$(function() {


	$("#mainNav li.parent").hover( 
	function() { $(this).children("ul").fadeIn(); } ,
	function() { $(this).children("ul").fadeOut(); }
	);
	
	 var path = location.pathname.substring(1);
   if ( path )
     $('#mainNav a[href$="' + path + '"]').attr('class', 'selected');
	 
	 


});
