//This code was created by the fine folks at Switch On The Code - http://blog.paranoidferret.com
//This code can be used for any purpose



function divOverMotion(div)
{
   var divider = document.getElementById(div);

	divider.style.background= "url(images/elements/motion.gif)";

}

function divOverStill(div)
{
   var divider = document.getElementById(div);

	divider.style.background= "url(images/elements/still.gif)";

}

function divOverInfo(div)
{
   var divider = document.getElementById(div);

	divider.style.background= "url(images/elements/info.gif)";

}

function divOverWeb(div)
{
   var divider = document.getElementById(div);

	divider.style.background= "url(images/elements/web.gif)";

}

function divOut(div)
{
   var divider = document.getElementById(div);

	divider.style.background = "#DDDDDD";

}

function randomText()
{
	
var r_text = new Array ();
r_text[0] = "quote1.gif";
r_text[1] = "quote2.gif";
r_text[2] = "quote3.gif";
r_text[3] = "quote4.gif";
r_text[4] = "quote5.gif";
r_text[5] = "quote6.gif";
r_text[6] = "quote7.gif";
r_text[7] = "quote8.gif";
var i = Math.round(7*Math.random());

return document.write("<img src='images/elements/"+r_text[i]+"'>");

}



