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