jQuery(document).ready(function() {
	 
	$('a[href="' + location.href + '"]').addClass("menuOn");
	
	$('.children').fadeTo(0,0);
	$('.children').removeClass("menuHide");
	
	$('li:has(.children)').hover(
		function(){$(this).children('.children').fadeTo(400,1);},
		function(){$(this).children('.children').fadeTo(400,0);}
	);
	 
});
