/** Start **/
//Picking a random number

function setcolor ()
{
	if ( document && document.body )
	{
		var a = Math.random () * 10;
		
		//If 5 or higher do this
		if (a >= 5)
		{
			document.body.style.background="#E15B14";
		} 
		// If 5 or less do this 
		else 
		{
			document.body.style.background="#96BF0D";
		}
	}
	else
	{
		setTimeout("setcolor()", 50); 
	}
}


setcolor ( );
include ("javascript/scroller.js");

