$(document).ready(function() 
{
	set_client();	
});

$(window).resize(function()
{
	set_client();
} );

function set_client()
{
	var wh = $(window).height();
	var ch = $('#content').height();
	var fixed_height = 354+27+38;
	
	if(ch+fixed_height < wh)
	{
		$('#content').css('height',wh-fixed_height);
	}	
}
