// JavaScript Document
function tidy() {
if ($(document).height() > $('#main').height()) 
{
	$('#wrap').height( $(document).height() );
	
}

}
tidy();

//test
$(window).resize( tidy );
