documentReady("afterResize");
function afterResize()
{
    var winwidth = document.all ? document.body.clientWidth : window.innerWidth;
    var winHeight = document.all ? document.body.clientHeight : window.innerHeight;
    
    if (winwidth <= 900) 
	{
        jQuery("#header, #footer, .subHeader, .landingPage , #pageContainer  ").css("width", "1024px");
    }
    else 
	{
		jQuery("#header, #footer, .subHeader, .landingPage , #pageContainer  ").css("width", "100%");
    }
}

documentReady("eventListingStyling");
function eventListingStyling()
{
	jQuery(".eventListing:first").css("border-top","none");
	jQuery(".eventListing:last").css("border-bottom","0");
}

documentReady("contentModuleStyling");
function contentModuleStyling()
{
	jQuery(".news_Events .contentModule:first").css("padding-top","0");
	jQuery(".news_Events .contentModule:last").css("border-bottom","0");
}

