<!--
//Edit this line to list all of your background images
var pic = new Array();
var linkArray = new Array();

pic[0] = "images/no_flash_rotate1.jpg";
pic[1] = "images/no_flash_rotate2.jpg";
linkArray[0] = "http://www.google.com";
linkArray[1] = "http://www.yahoo.com";
var randNumValue = (Math.round(Math.random()*(pic.length-1)));

var url = linkArray[randNumValue];

function pickimage()
{
if (document.getElementById("rotate_no_flash") != null) {

	//This line picks an image at random from the list you entered above
	var bgimage=pic[randNumValue];

	//This line applies the background image to your rotating_image
	document.getElementById("rotate_no_flash").src = bgimage;
}
}

-->
