$(function() {	
	// TARGET BLANK XHTML STRICT
	$('a[@rel$="external"]').bind("click", function(){
		this.target = "_blank";
	});
	
	$(".products a:first").hover(
		function () {
			$(".submenu").css({ display:"block" });
		}, 
		function () {
			$(".submenu").css({ display:"none" });
		}
	);
	
	$(".submenu").hover(
		function () {
			$(this).css({ display:"block" });
			$(".products a:first").addClass("on");
		}, 
		function () {
			$(this).css({ display:"none" });
			$(".products a:first").removeClass("on");
		}
	);
	
	
	$(".submenu li").hover(
		function () {
			$(this).children("ul").css({ display:"block" });
			$(this).children("span").css({background:"#f9e0ea",color:"#da2f70"});
		}, 
		function () {
			$(this).children("ul").css({ display:"none" });
			$(this).children("span").css({background:"#de447f",color:"#fff"});
		}
	);

	
});