$(document).ready(function(){

	widthH1 = $('h1').width();
	$('.dashed-top').css('margin-left', widthH1+10);
	$('.dashed-top').css('width', 945-widthH1);
	
	
	/* deltaContent = 360;
	deltaBody = 295;	 */
	deltaContent = 360;
	deltaBody = 295;	
	if ($.browser.opera)
	{

	}
	if ($.browser.webkit)
	{

	}
	if ($.browser.msie)
	{
		if ( parseInt($.browser.version, 10)  == 8 )
		{
			deltaContent = 364;
			deltaBody = 299;
		}
	}
	if ($.browser.mozilla)
	{

	}

    bodyH = $('body').height();

	$("#bodyContent").css('height', bodyH - deltaBody + 'px');
	$(".autoH").css('height', bodyH - deltaContent + 'px');
	
	
	$(window).resize(function()
	{
		$("#bodyContent").css('height', bodyH - deltaBody + 'px');
		$(".autoH").css('height', bodyH - deltaContent + 'px');
	});
});
