
//Document Ready
$(function(){
		   
	//Fades the menu in and out as required.
	$('#PrimaryNav li').hover(function(){									   
		$(this)						 
			.find('ul')
			.stop('true', 'true')
			.fadeIn('600');
	}, function(){
		$(this)
			.find('ul')
			.stop('true', 'true')
			.fadeOut('600');
	});

	$('#PrimaryNav ul li').hover(function(){
		$(this).css('backgroundColor', '#353638');			 
	}, function(){
		$(this).css('backgroundColor', '#0E3A53');
	});
	
});


