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

