/* -------------------------------------------------------------------------- */
/* JavaScript für Wittenstein AG                                              */
/*                                                                            */
/* Erstellet am 10.11.2003 - Walter Hohm                                      */
/* Erweitert am 08.04.2004 - Walter Hohm                                      */
/*                                                                            */
/* itara GmbH - 2003                                                          */
/* -------------------------------------------------------------------------- */

var orgClassName;
function buttonOver(obj,className) {
    orgClassName   = obj.className;
    obj.className  = className;
}
function buttonOut(obj) {
    obj.className  = orgClassName;
}
function buttonClick(link) {
    window.location.href = link;
}
function highlightNavigation(objID,className) {
    if ((objID !=null) && (className != "")) {
        obj = document.getElementById(objID);
        if (obj != null) {
            obj.className  = className;
        }
    }
}

function highlightNavigationLeft(pageName,className) {
    if (pageName != "index.html") {
        var posSubPage  = pageName.indexOf("_");
        var posErw      = pageName.indexOf(".");
        var elementId   = "";
    
        if ((posSubPage != -1) && (posErw != -1)) {
            elementId = "nav" + pageName.substring(posSubPage+1,posErw);
            obj = document.getElementById(elementId);
            if (obj != null) {
                obj.className  = className;
            }
        }
    }
}

function jumpToJobs() {
	var jobSite = "http://www.alphagetriebe.de/cgi-bin/jobs/jobs_go.cgi?a=10&sort=2s";
	window.location.href = jobSite;
}
