// JavaScript Document

	function centerHeight(divObj) {
		var obj = document.getElementById(divObj);
		var height;
		if (document.body.clientHeight) height = document.body.clientHeight;
		else if (window.innerHeight) height = window.innerHeight;
		if (height > 450) {
			obj.style.top = Math.floor((height - 450)/2) + "px";
		}
	}

	
	var URLname = "oyama_sausage_company.html";
	var i=10;
	
	function jumpTimer() 
	{
	 if(i > 0)
	 {
	  document.getElementById('CountArea').innerHTML = '(' + i + 's) ';
	  i = i-1;
	  var c = window.setTimeout("jumpTimer()", 1000);
	 }
	 else 
	 {
	  parent.location=URLname;
	 }
	}
	
function changeBgColor(newBgColor) {
		document.getElementById('top').style.backgroundColor = newBgColor;
		document.getElementById('tagline').style.display = "block";
}