﻿// This function is called every time index.php is hit
function bodyLoad() 
{
	Desc(); 		// Pull up a random desc into banner_td
	//document.getElementById('header').innerHTML = "gdfgdfg";	
}

var description = new Array();
description[0] = 'Tha Spot to go to cure boredom!';
description[1] = 'Tha Best of the Internet!';
description[2] = 'Tha Spot has all the Best Web-Sites at 1 Spot!';
description[3] = 'Tha Spot has the best of the web for your easy accessibility!';
description[4] = 'Tha Spot has the best of the web for your viewing pleasure!';
description[5] = 'Tha Spot has the best of the web for your amusement!';
description[6] = 'Tha Spot has the best of the web for your convienience!';


function Desc() 
{
	var randnum = Math.floor(Math.random() * 6);
	document.getElementById('desc').innerHTML = description[randnum];

}


