var path ="fileadmin/template/img/";

if (document.images)
   {
      index_1= new Image(229,220);
      index_1.src=path+"index_1.jpg";  
      index_2= new Image(229,220);
      index_2.src=path+"index_2.jpg"; 
      index_3= new Image(229,220);
      index_3.src=path+"index_3.jpg"; 
      index_4= new Image(229,220);
      index_4.src=path+"index_4.jpg"; 
     
      index_0= new Image(229,220);
      index_0.src=path+"index_0.jpg";  

   }

function changeStartImage(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + ".src");
      document["startImage"].src= imgOn;
    }
 }

function refreshStartImage()
 {
   if (document.images)
    {
      imgOff=eval("index_0.src");
      document["startImage"].src= imgOff;
    }
 }


