//Random Image Script --Rjaniz

//Replace array elements with picture URLs
var images = new Array("/images/blocka/1a.jpg","/images/blocka/2a.jpg","/images/blocka/3a.jpg","/images/blocka/4a.jpg","/images/blocka/5a.jpg","/images/blocka/6a.jpg");
var rnd = Math.floor(Math.random() * images.length);

//This is for an alt tag, no real use for it, but i left it here.
window.document.write("<center><img src=\""+images[rnd]+"\" alt=\"\" border=0></center>");
