$(document).ready(function() {
		if ($(window).height() > $('#sitebox').height()) {
		$('#content').height( $(window).height() - ($('#mainflashmenu').height() + $('#promobox').height()));
/* 		$('#actiebox').height( $(window).height() - $('#mainflashmenu').height() - 65); */
		
		} 
		$("#mainmenu").css('left', (950 - $("#mainmenu").width())/2);
		$(".parent").children('ul').slideUp(0);
		$(".parent.active").children('ul').slideDown(0);


$(".parent").mouseleave(function (e) {
		if ($(this).hasClass('active')){} else{$(this).children('ul').slideUp("slow")};
});


$(".parent").mouseenter(function (e) {
	   	$(this).children('ul').slideDown("slow");
});
	


		$("#mainmenu").css('bottom', 0);

		$(".parent").children('ul').fadeOut(0);
		$(".parent.active").children('ul').fadeIn(1200);

});
