<!-- Automated Tabs -->

var tab = 1;
var userKey = 0;
function timedCount()
{
if (userKey == 0){
	if (tab == 1){
		show('IT', 'NOIT');
		tab = 2;
	}else{
		show('NOIT', 'IT');
		tab = 1;
	}
}else{
	return;
}

t=setTimeout("timedCount()",7000);
}
function setUserDefined(){
	userKey = 1;
}

<!-- /Automated tabs -->

<!-- Tabs -->
function show(obj1, obj2){
document.getElementById(obj1).style.display="block"
document.getElementById(obj2).style.display="none"
}
<!-- /Tabs -->