$(function() {
	$("#menu ul li:odd").addClass("odd");

	$("#left").attr("minHeight", 200);
	$(window).resize(resizeContent);
	resizeContent();


	$("#div_melding, .div_melding").insertAfter($("#container")).width($(window).width()).height($(document.body).height());

	
	$(".grid").bind("mousemove mouseenter mouseleave", function() {
		$(".accountField").css({"position": "static"});
	});

});

function resizeContent() {
	$height = ($(window).height() - ($("#header").height() + $("#topmenu").height() + $("#footer").height()) - 14);
	if ($height > $("#left").attr("minHeight")) {
		$("#left").css({"min-height": $height});
		$("#left").attr("minHeight", $height);
	}

}


