// JavaScript Document

// Check for INT value. 
var numInt = 1;
// Variable.

function chckFrInt()
{// Check to see if it's the first time.
	if(numInt == 4)
	{//  if it IS the first time
		hideDiv();
	}
}

function hideDiv(){
	document.getElementById('tabs').style.display = "none";
	document.getElementById('footer').style.display = "none";
}

