var bildzahl=13;
var bildnr=0;
var bild=new Array();

 for (i=0;i<bildzahl;i++) {bild[i]=new Image();}


bild[0].src="http://pictures.greatstuff.at/thumbnails/menschen/pe62.jpg";
bild[1].src="http://pictures.greatstuff.at/thumbnails/menschen/pe64.jpg";
bild[2].src="http://pictures.greatstuff.at/thumbnails/pflanzen/p01.jpg";
bild[3].src="http://pictures.greatstuff.at/thumbnails/pflanzen/p39.jpg";
bild[4].src="http://pictures.greatstuff.at/thumbnails/technik/te12.jpg";
bild[5].src="http://pictures.greatstuff.at/thumbnails/technik/te09.jpg";
bild[6].src="http://pictures.greatstuff.at/thumbnails/tiere/t32.jpg";
bild[7].src="http://pictures.greatstuff.at/thumbnails/tiere/t39.jpg";
bild[8].src="http://pictures.greatstuff.at/thumbnails/natur/n49.jpg";
bild[9].src="http://pictures.greatstuff.at/thumbnails/natur/n40.jpg";
bild[10].src="http://pictures.greatstuff.at/thumbnails/irland/i41.jpg";
bild[11].src="http://pictures.greatstuff.at/thumbnails/sport/s31.jpg";
bild[12].src="http://pictures.greatstuff.at/thumbnails/sport/s30.jpg";



function moment() {



var rand=Math.floor(Math.random()*bild.length);



bildnr=rand;
document.moment.src=bild[bildnr].src;
}