$(document).ready(function(){
	$('li.dropdown').hover(function(){
		$(this).find('ul:hidden').show();
	},function(){
		$(this).find('ul:visible').hide();
	});
});
