//<![CDATA[

var images=new Array(); 
images[0]="IMAGES/winter/random1.jpg"; 
images[1]="IMAGES/winter/random2.jpg"; 
images[2]="IMAGES/winter/random3.jpg";
images[3]="IMAGES/winter/random4.jpg";
images[4]="IMAGES/winter/random4.jpg";
images[5]="IMAGES/winter/random4.jpg";

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

} 
onload=randomimage;

//]]>