// JavaScript Document


//Randomize the image on this pages// -->
function randomizeImage() {
var img = new Array();
var prefix = "/images/footers/";
img[0] = prefix + "black.gif";
img[1] = prefix + "gm.jpg";
img[2] = prefix + "nike.gif";
var index = Math.round(2*Math.random());
// Commented out by alfredo@realdecoy.com December 2006 at the request of Jennifer
// document.write('<IMG NAME=health src='+img[index]+' border=0>');
}