/* AUTHOR: [web-enhancements] Austria */
/* Creation date: 26.12.2005 */          

panelimages = 4;
cycletimer = 5000; //millisecs   

var currentloop = 1;

function swapPanelImage() {   
    currentloop = currentloop + 1;
    if (currentloop > panelimages) { currentloop = 1; }
    newsrc = "images/panelimage" + currentloop + ".jpg";
    document.images["panelimage"].src = newsrc;   
    setTimeout("swapPanelImage()",cycletimer);
}                                   


imgmenu1normal = new Image(); imgmenu1normal.src = "images/m1n.jpg";
imgmenu2normal = new Image(); imgmenu2normal.src = "images/m2n.jpg";
imgmenu3normal = new Image(); imgmenu3normal.src = "images/m3n.jpg";
imgmenu4normal = new Image(); imgmenu4normal.src = "images/m4n.jpg";
imgmenu5normal = new Image(); imgmenu5normal.src = "images/m5n.jpg";
imgmenu6normal = new Image(); imgmenu6normal.src = "images/m6n.jpg";
imgmenu7normal = new Image(); imgmenu7normal.src = "images/m7n.jpg";


imgmenu1high = new Image(); imgmenu1high.src = "images/m1h.jpg";
imgmenu2high = new Image(); imgmenu2high.src = "images/m2h.jpg";
imgmenu3high = new Image(); imgmenu3high.src = "images/m3h.jpg";
imgmenu4high = new Image(); imgmenu4high.src = "images/m4h.jpg";
imgmenu5high = new Image(); imgmenu5high.src = "images/m5h.jpg";
imgmenu6high = new Image(); imgmenu6high.src = "images/m6h.jpg";
imgmenu7high = new Image(); imgmenu7high.src = "images/m7h.jpg";


function switchstate(which,state) {
  document.images[which].src = eval("img"+which+state+".src");
}

setTimeout("swapPanelImage()",cycletimer);