/**
 * @brief This function moves the content UP if there is no header image on the page. 
 */
function moveContent() 
{
	// if there is no header image, move the content up
	if(document.getElementById("hdr-img") == null )
	{
		if(document.getElementById("sub") != null ) {
			// move the 'sponsors' column up
			document.getElementById("sponsors").style.marginTop = "35px";
			// move top of the content container up
			document.getElementById("pageBody-top").style.marginTop = "55px";
			// move the page header up
			document.getElementById("page-hdr").style.marginTop = "-80px";
		}
	}
}

/**
 * @brief This function moves the content UP if there is no header image on the page. Will only be called if using IE6. (need different margins)
 */
function moveContent_ltie7()
{
	// if there is no header image, move the content up
	if(document.getElementById("hdr-img") == null )
	{
		if(document.getElementById("sub") != null ) {
			// move the 'sponsors' column up
			document.getElementById("sponsors").style.marginTop = "60px";
			// move top of the content container up
			document.getElementById("pageBody-top").style.marginTop = "80px";
			// move the page header up
			document.getElementById("page-hdr").style.marginTop = "-86px";
		}
	}
}