<!--
    var ic = 8;
    var xoxo = new Array(ic); 
	xoxo[0] = "imagesTemplates/homeRandom1.jpg";
	xoxo[1] = "imagesTemplates/homeRandom2.jpg";
	xoxo[2] = "imagesTemplates/homeRandom3.jpg";
	xoxo[3] = "imagesTemplates/homeRandom4.jpg";
	xoxo[4] = "imagesTemplates/homeRandom5.jpg";
	xoxo[5] = "imagesTemplates/homeRandom6.jpg";
	xoxo[6] = "imagesTemplates/homeRandom7.jpg";
	xoxo[7] = "imagesTemplates/homeRandom8.jpg";
	function pickRandom(range) {
	if (Math.random)
	return Math.round(Math.random() * (range-1));
	else {
	var now = new Date();
	return (now.getTime() / 1000) % range;
	}
	}
	var choice = pickRandom(ic);
	
	document.writeln('<IMG SRC="'+xoxo[choice]+'" WIDTH=742 HEIGHT=414 BORDER=0><br>');
// -->