function toBlack()
{
	this.style.borderColor='black';
}
function toGrey()
{
	this.style.borderColor='#BBBBBB';
}

function assignOver()
{
var theTable = document.getElementById('rectable');
var tableImgs = theTable.getElementsByTagName('img');
   for (i=0; i<tableImgs.length; i++)
	{
	   tableImgs[i].onmouseover = toBlack;
	   tableImgs[i].onmouseout = toGrey;
	}
}

function reDirect()
{
	window.location.replace('/homep.php');
}

function allowEnter()
{
	document.getElementById('load').style.display = 'none';
	document.getElementById('enter').style.display = 'inline';
	
	window.setTimeout('reDirect()',2500);
}