$(function(){
	$('#menu dl').hover(function(){
		$(this).find('dd').css('display', 'block');
	},
	function (){
		$(this).find('dd').css('display', 'none');
	})
})
