$(document).ready(function() {
	initNav();
	initSelector();
});
function initNav() {
	$("#nav1").hover(
		function() { $("#navmenu1").fadeIn(200); },
		function() { $("#navmenu1").fadeOut(200, function(){}); }
		);
	$("#nav2").hover(
		function() { $("#navmenu2").fadeIn(200); },
		function() { $("#navmenu2").fadeOut(200, function(){}); }
		);
	$("#nav4").hover(
		function() { $("#navmenu4").fadeIn(200); },
		function() { $("#navmenu4").fadeOut(200, function(){}); }
		);		
}

function initSelector() {
	$(".dropdown dt a").click(function() {
		$(".dropdown dd").toggle();
	});
				
	$(".dropdown dd ul li a").click(function() {
		var text = $(this).html();
		$(".dropdown dt a").html(text);
		$(".dropdown dd").hide();
	});	
	
	$(document).bind('click', function(e) {
		var $clicked = $(e.target);
		if (! $clicked.parents().hasClass("dropdown"))
			$(".dropdown dd").hide();
	});
}

