$(document).ready(function(){

	$('#menu dd ul').hide();

	$("#menu dt a").mouseover(function() {
		var getbox = "#" + $(this).attr("rel");
		$(getbox + " ul").fadeIn("medium");
		$('#menu dd:not(' + getbox + ') ul').fadeOut("fast");
	});

});