$(document).ready(function(){
	
	setFooter();
	
	$(window).resize(function() {
	  setFooter();
	});
	
	
});

function setFooter() {
	
	//alert(windowHeight);
	
	var windowHeight = $(window).height();	
	var neededMinHeight = windowHeight - 153 - 75;
	
	$('#content').height('auto')
	$('#content .col.right').height('auto')
	
	if ( $('#content').height() < neededMinHeight) {
		$('#content').height(neededMinHeight);
	}
	
	$('#content .col.right').height( $('#content').height() );
	
	//$('#content .left').html( windowHeight + " / " + neededMinHeight);
}



