$(document).ready(function()
{
	if ($(document).height() > $(".footer").offset().top + $(".footer").height())
	{
		$(".main").height($(".main").height() + $(document).height() - $(".footer").offset().top - $(".footer").height());
	}
	
	$(window).resize(function()
	{
		if ($(document).height() > $(".footer").offset().top + $(".footer").height())
		{
			$(".main").height($(".main").height() + $(document).height() - $(".footer").offset().top - $(".footer").height());
		}
	});
});
