function resize(){
	oh = $('#content').height();
	nh = $(window).height() - $('#footer').outerHeight() - 300;
	if(nh <= 200){nh = 200;}
	if(nh > oh){$('#content').height(nh);}
}

$(window).load(resize);
$(window).resize(resize);

$(document).ready(function(){w=$('img.left').width();if(w<325){p=325-w;$('img.left').css('margin-left', p);}});
