$(function() {
	$("div#areaselect dl dd li").hover(
		function() {
		var html = $(this).html();
			$(this).children("p").css("display", "block");
		},
		function() {
			$(this).children("p").css("display", "none");
		}
	);
});

