window.onload = function() {
$(".menuitem").mouseenter(function () {
	var id = $(this).attr("id");
	$(".dropdownbox").hide();
	$("div ."+id).slideDown(1000);	
});

$(".dropdown" && ".dropdownbox").mouseleave(function () {
	
	var id = $(this).attr("id");
	$("."+id).hide();	
});

}
