$(document).ready(function(){

	$('.header ul li').mouseover(function(){
	       $(this).find('ul').show();
	   }).mouseout(function(){
         $(this).find('ul').hide();
     });
	
	
});


















