var contactOn = 0;
var contactText = '<b>Marshall "Gripp" Gillson<br>Phone:</b> 678-223-FLOW<br><b>Email:</b> marshall@glassEyeballs.com';

function SetLabler(text)
{
	if(document.getElementById('Footer').innerHTML != contactText)
	{
		contactOn = 0;
	}
	
	document.getElementById('Footer').innerHTML = text;
}

function ContactSwap()
{
	if(contactOn == 0)
	{
		SetLabler(contactText);
		contactOn = 1;
	}
	
	else
	{
		contactOn = 0;
	}
}

function ContactMouseOut()
{
	if(contactOn == 0)
	{
		SetLabler('&nbsp;');
	}
}