   <!--
var ic = 11;
	var i = new Array(ic);
	i[0] = "<td height='244' valign='top'><img src='images/mainimage.gif' height='244' width='334' border='0' alt=''></td>";
	i[1] = "<td height='244' valign='top'><img src='images/mainimage1.jpg' height='244' width='334' border='0' alt=''></td>";
	i[2] = "<td height='244' valign='top'><img src='images/mainimage2.jpg' height='244' width='334' border='0' alt=''></td>";
	i[3] = "<td height='244' valign='top'><img src='images/mainimage3.jpg' height='244' width='334' border='0' alt=''></td>";
	i[4] = "<td height='244' valign='top'><img src='images/mainimage4.jpg' height='244' width='334' border='0' alt=''></td>";
	i[5] = "<td height='244' valign='top'><img src='images/mainimage5.jpg' height='244' width='334' border='0' alt=''></td>";
	i[6] = "<td height='244' valign='top'><img src='images/mainimage6.jpg' height='244' width='334' border='0' alt=''></td>";
	i[7] = "<td height='244' valign='top'><img src='images/mainimage7.jpg' height='244' width='334' border='0' alt=''></td>";
	i[8] = "<td height='244' valign='top'><img src='images/mainimage8.jpg' height='244' width='334' border='0' alt=''></td>";
	i[9] = "<td height='244' valign='top'><img src='images/mainimage9.jpg' height='244' width='334' border='0' alt=''></td>";
	i[10] = "<td height='244' valign='top'><img src='images/mainimage10.jpg' height='244' width='334' border='0' alt=''></td>";
	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(i[choice]);
// -->
