<script language="JavaScript" type="text/javascript"> 

<!-- 

var ic = 6;

var xoxo = new Array(ic); 

xoxo[0] = "http://www.yoursite.com/graphic1.gif"; 
xoxo[1] = "http://www.yoursite.com/graphic2.gif";
xoxo[2] = "http://www.yoursite.com/graphic3.gif"; 
xoxo[3] = "http://www.yoursite.com/graphic4.gif";
xoxo[4] = "http://www.yoursite.com/graphic5.gif"; 
xoxo[5] = "http://www.yoursite.com/graphic6.gif";
function pickRandom(range) 
{ if (Math.random) return Math.round(Math.random() * (range-1)); else { var now 
= new Date(); return (now.getTime() / 1000) % range; } 
} 
// Write out an IMG tag, using a randomly-chosen image name. 
var choice = pickRandom(ic); 
// --> 
</script>
