/* --- variables --- */
var path = "htmlVersion/gfx/selection/";
var images = new Array("selection0.jpg", "selection1.jpg", "selection2.jpg", "selection3.jpg");

/* --- functions --- */
function createImage() {	
imageRandom = Math.floor(Math.random()*images.length);		
document.write("<img src='" + path + images[imageRandom] + "' width='400' height='240' />");
}
