/* --- variables --- */var path = "gfx/design/";var images = new Array("collage1.jpg", "collage2.jpg", "collage3.jpg");/* --- functions --- */function createCollage(){	imageRandom = Math.floor(Math.random()*images.length);	document.write("<img class='collage' src='" +path+images[imageRandom] + "' width='475' height='400' 'Verschiedene Fotografien von Meike Helber' />");}
