/* pretending no source-code available  -  temporarily off the track
if (document.layers){
    window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
    window.onmousedown=rightclick;
    window.onmouseup=rightclick;
    
    function rightclick(e) {
    if (e.which == 3) {
    // Put right mouse code here
    alert('Source Code not available');
    return false; 
    }
    else {
        return true; 
        }
    }
}

if (document.all){
    function click() {
    if (event.button==2) {
    alert('Source Code not available')
    }
    
    if (event.button==3) {
    alert('Source Code not available')}
    }
    document.onmousedown=click
}
*/

// change images on mouse-over

         imag = new Array()

         imag[0] = "images/kontakt.gif"
         imag[1] = "images/kontakt-omo.gif"

         imag[2] = "images/idee.gif"
         imag[3] = "images/idee-omo.gif"

         imag[4] = "images/adresse.gif"
         imag[5] = "images/adresse-omo.gif"

         imag[6] = "images/konstruktion.gif"
         imag[7] = "images/konstruktion-omo.gif"

         imag[8] = "images/copyright.gif"
         imag[9] = "images/copyright-omo.gif"
  
        function swtch(num,imgname)

{
                imgname.src = im[num].src
}
        im = new Array()
        for (var i = 0; i < imag.length; i++){
                im[i] = new Image();
                im[i].src = imag[i];
}