$(document).ready(function(){

	//footerHeight();

});

function footerHeight()
{
	$min = $("footer").height();
	
	$window = $(window).height();
	
	$content = $(".container").height() + $("header").height();
	
	$footer = $window - $content;
	
	alert("Min: " + $min + "  Window: " + $window + "  Content:" + $content + "  Footer: " + $footer);
	
	if($footer > $min)
	{
		alert("Size Change");
		$("footer").css('height', '100%');
	}
}
