//<![CDATA[

var images=new Array();
images[0]="images/slideshow/1.png";
images[1]="images/slideshow/2.png";
images[2]="images/slideshow/3.png";

function randomimage() {
var i=Math.floor(Math.random()*images.length);
document.getElementById("random").src=images[i];

}
onload=randomimage;

//]]>
