$(document).ready(function() {

$("ul#nav_parent li ul.children").hide();

	$("ul#nav_parent li").not("ul.children li").hover(function() { //Hover over event on list item
		//$(this).css({'background' : '#faf4ef url(http://www.wolvertoncopm.com/images/topnav_active.gif) top left repeat-x'});
		//Add background color and image on hovered list item
		$(this).find("ul.children").css({'display' : 'block'}).show(); //Show the subnav
	} , function() { //on hover out...
		//$(this).not("li.current").css({'background' : 'none'}); //Ditch the background
		$(this).not("li.current").find("ul.children").css({'display' : 'none'}).hide(); //Hide the subnav
	});
	
}); //End jQuery
