// Core functions for this-serious.com

function fnAdjustPageHeaderWidth(){
/*	
	Simple script to compare the width values of the header and sub header.  
	The header needs to be as long as the sub header if it is too short to
	in order to maintain the design
*/
	Header = $("#PageHeader").width();	
	SubHeader = $("#PageSubHeader").width();
	
	if(SubHeader > Header)
	{
		$("#PageHeader").css("width",SubHeader);
	}
	
	
	//alert($("#PageSubHeader").width());
}