jQuery(document).ready(function(){
		jQuery('#menu-main-navigation li').hover(
			function() { jQuery('ul', this).css('display', 'block'); },
			function() { jQuery('ul', this).css('display', 'none'); });
	});
