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



function fixTemplate(){
	$('#content').height('auto')
	//$('#content').marginBottom('0px')
	var footer_y = $('#footer').position().top;
	var footer_height = $('#footer').height();
	var header_height = $('#header').height();
	var viewport_height = $(window).height();
	var content_height = $('#content').height();

	if(footer_height + header_height + content_height < viewport_height){
		var height = viewport_height - (footer_height + header_height + 54);
		$('#content').height(height+'px');
	} else {
		//$('#content').marginBottom('8px')
	}
}