$(document).ready(function() {
	$('ul.topMenu li').each(function(){
		$(this).hover(function(){
			$(this).find('ul').show();						   
		},function(){
			$(this).find('ul').hide();	
		});				  
	});
});
