function startTimer(){
	setTimeout("showHeader()",1800);
}

function startCellSepTimer(){
	setTimeout("showCellSepHeader()",1800);
}

function showHeader(){
	var winWidth;
	var headerPos;
	//window width that is static
	var winStatic = 800;
	
	if(document.getElementById){
		if(document.getElementById('dynamic_header')){
			winWidth = document.body.clientWidth;
			if(winWidth > winStatic){
				if(isIE){
					headerPos = ((winWidth - winStatic)/2)+138;
				}else{
					if(document.all){
						headerPos = ((winWidth - winStatic)/2)+138;
					}else{
						headerPos = ((winWidth - winStatic)/2)+138;
					}
				}
			}else{
				headerPos = 138;
			}
			document.getElementById('dynamic_header').style.top = "209px"; 
			document.getElementById('dynamic_header').style.left = (headerPos + "px"); 
		} 
	} 

	/*
	if(document.getElementById){
		setPosition('mainsearchmenu', 393, getLeftPos());
	}else{
		if(document.all){
			setPosition('mainsearchmenu', 393, getLeftPos());
		}
	}
	if(document.layers){
		setPosition('mainsearchmenu', 393, getLeftPos());
	}
	*/
}

function showCellSepHeader(){
	var winWidth;
	var headerPos;
	//window width that is static
	var winStatic = 800;
	
	if(document.getElementById){
		if(document.getElementById('dynamic_header')){
			winWidth = document.body.clientWidth;
			if(winWidth > winStatic){
				if(isIE){
					headerPos = ((winWidth - winStatic)/2)+138;
				}else{
					if(document.all){
						headerPos = ((winWidth - winStatic)/2)+138;
					}else{
						headerPos = ((winWidth - winStatic)/2)+138;
					}
				}
			}else{
				headerPos = 138;
			}
	
			document.getElementById('dynamic_header').style.top = "205px"; 
			document.getElementById('dynamic_header').style.left = (headerPos + "px"); 
		} 
	} 
	/*
	if(document.getElementById){
		setPosition('mainsearchmenu', 388, getLeftPos());
	}else{
		if(document.all){
			setPosition('mainsearchmenu', 388, getLeftPos());
		}
	}
	if(document.layers){
		setPosition('mainsearchmenu', 388, getLeftPos());
	}
	*/
}
