/* 
This script will link the logo and head with home
By Nils Schreiber for AGSV Site - NILSDESIGN http://nilsdesign.com
*/

var home = "http://www.linkeliste-ob.de/index.php";

function ND_goHome() {
    var el;
    el=document.getElementById('header');

    el.style.cursor = "pointer";
    el.setAttribute("title", "Link zur Startseite");
    
    if (el.addEventListener) el.addEventListener("click",ND_home,false);
    else if (el.attachEvent) el.attachEvent("onclick",ND_home);
}

function ND_home() {
    document.location.href = home;
}

if (window.addEventListener) window.addEventListener("load",ND_goHome,false);
else if (window.attachEvent) window.attachEvent("onload",ND_goHome);
