var abId = "ab_1"; // set var for about section 2nd nav
var colId = "col_1"; // set var for collection section 2nd nav
var iron_li = "off"; // set var for iron in corner

$(function(){
	$("#"+abId).css({'background-position': '-50px 0'});

	$(".aboutnav").click(function(){
		$("#"+abId+"_div").hide();
		$("#"+abId).css({'background-position': '0 0'});
		abId = $(this).attr("id");
		$("#"+abId+"_div").show();
		$("#"+abId).css({'background-position': '-50px 0'});
		return false;
	});
	
	$(".colnav").click(function(){
		$("#"+colId+"_div").hide();
		colId = $(this).attr("id");
		$("#"+colId+"_div").show();
		return false;
	});
	
	
	$('#iron_corner').click(function() {
		$('#popup').slideDown(700);
		iron_li = "on";
		return false;
	});
	
	$('body').click(function(evt) {
		if (iron_li == "on") {
			var target = evt.target;
			if ($(target).attr("class") !== 'ironing') {
				$('#popup').slideUp(700);
			addEch_open = "off";
			}
		}
	});
});