function setSizes(){
	var tmpHeight = $(document).height();
	if($("#column1 #MENU2").length != 0){
		$("#column2").height(tmpHeight - 439);
	}
	else{
		$("#column1").height(tmpHeight - 547);
	}	
}

$(window).resize(function() {
	
});

$(document).ready(
	function(){
		setSizes();	
	}
);
