var alertTimerOnId = 0;
var alertTimerOffId = 0;

function turnItOff () 
{
	document.getElementById("bigbutton_on").style.display = 'none';
	document.getElementById("bigbutton_off").style.display = 'block';
	alertTimerOnId = setTimeout ( "turnItOn()", 1000 );
	clearTimeout ( alertTimerOffId );
}

function turnItOn ( )
{
	document.getElementById("bigbutton_off").style.display = 'none';
	document.getElementById("bigbutton_on").style.display = 'block';
	document.getElementById("bigbutton_on").style.visibility = 'visible';
	alertTimerOffId = setTimeout ( "turnItOff()", 1000 );
	clearTimeout ( alertTimerOnId );
}

window.onload = function() 
{
	alertTimerOnId = setTimeout ( "turnItOn()", 5000 );
}
