// Author: Berni
// Copyright: (C) 2007-2009
// Java-Programm: buttons.js
// Farberfekte der Navigation

if (document.images) {

        doc0 = new Image()
        doc0.src =      "00102.gif"


}

function HighLight(i) {
        if (document.images) {
                var thang = document.images[i].src
                var off = thang.lastIndexOf("02")
                if (off != -1) {
                        document.images[i].src = thang.substring(0,off) + "01" + ".gif"
                }
        }
}

function Lightsoff(i) {
        if (document.images) {
                var thang = document.images[i].src
                var on = thang.lastIndexOf("01")
                if (on != -1) {
                        document.images[i].src = thang.substring(0,on) + "02" + ".gif"                }
        }
}
