$(document).ready(function() {
	
	$("a").not("[href^=/]").not("[href^=#]").attr({ target: "_blank" });
	$("a[rel=external]").attr({ target: "_blank" });
	
	$("#footer > li:first").addClass("first");
	
	$("#core_10").bind("mouseenter",function(){
		$("#core_10_pop").css({ display: "block" });
		$("#core_10").removeClass("transparent");
		$("#classic_20").addClass("transparent");
		$("#industry_40").addClass("transparent");
	}).bind("mouseleave",function(){
		$("#core_10_pop").css({ display: "none" });
		$("#core_10").removeClass("transparent");
		$("#classic_20").removeClass("transparent");
		$("#industry_40").removeClass("transparent");
	});
	
	$("#classic_20").bind("mouseenter",function(){
		$("#classic_20_pop").css({ display: "block" });
		$("#classic_20").removeClass("transparent");
		$("#core_10").addClass("transparent");
		$("#industry_40").addClass("transparent");
	}).bind("mouseleave",function(){
		$("#classic_20_pop").css({ display: "none" });
		$("#classic_20").removeClass("transparent");
		$("#core_10").removeClass("transparent");
		$("#industry_40").removeClass("transparent");
	});
	
	$("#industry_40").bind("mouseenter",function(){
		$("#industry_40_pop").css({ display: "block" });
		$("#industry_40").removeClass("transparent");
		$("#classic_20").addClass("transparent");
		$("#core_10").addClass("transparent");
	}).bind("mouseleave",function(){
		$("#industry_40_pop").css({ display: "none" });
		$("#industry_40").removeClass("transparent");
		$("#classic_20").removeClass("transparent");
		$("#core_10").removeClass("transparent");
	});
	
	$("div#swatches ul li").each(function(){
		$(this).css({ backgroundImage: "url(/images/swatch/" + $(this).attr("class") + ".png)" });
	});
	
	$("a[href=#show_wholesalers]").click(function(){
		$("div#show_wholesalers").fadeIn(200);
		return false;
	});
	$("a[href=#close_wholesalers]").click(function(){
		$("div#show_wholesalers").fadeOut(200);
		return false;
	});

});