jQuery(document).ready(function(){ 
	
jQuery('#p8Nav li a.p8trg').parent().hover(function(){
	jQuery(this).find('ul:first').removeClass('p8hide');
	  jQuery(this).find('ul:first').addClass('p8show');
    jQuery(this).find('a:first').css('background-color','#37648e');
 },function(){
     jQuery(this).find('ul:first').removeClass('p8show');
	  jQuery(this).find('ul:first').addClass('p8hide');
     jQuery(this).find('a:first').css('background-color','#4A7CA0');
});
	})
