// JavaScript Document
function wechsel()
{
 bild= new Array("top01","top02","top03","top04","top05","top06","top07","top08","top09")
 zahl2="";
 zahl3="";
   for(i=0;i<1;i++)
  {
   x=parseInt(Math.random()*6);
   zahl2+=bild[x];
  }
  for(k=0;k<1;k++)
  {
   x=parseInt(Math.random()*9);
   zahl3+=bild[x];
  }
	document.getElementById("left").style.backgroundImage = "url(http://loessnitzer-runde.de/images/left/"+zahl2+".jpg)";
	document.getElementById("mitte").style.backgroundImage = "url(http://loessnitzer-runde.de/images/impressions/"+zahl3+".jpg)";
}

