// GHV Website javascript
// author: Stefan Haack, shaack@7d0.de

function init() {
}

// menu mouse over
function mov_news(image) {
    if(image.src.indexOf("_of") == -1) {
        image.src = "/ghv/img/arrow_mo.gif";
    }
}

function mot_news(image) {
    if(image.src.indexOf("_of") == -1) {
        image.src = "/ghv/img/arrow.gif";
    }
}

// sandra pdf mouse over
function mov_pdf(image) {
    if(image.src.indexOf("_of") == -1) {
        image.src = "/ghv/img/shared/pdf_mo.gif";
    }
}

function mot_pdf(image) {
    if(image.src.indexOf("_of") == -1) {
        image.src = "/ghv/img/shared/pdf.gif";
    }
}
// ende sandra pdf mouse over

// sandra toolbar mouse over fax
function mov_tool(image) {
    if(image.src.indexOf("_of") == -1) {
        image.src = "/ghv/img/" + image.name + "_mo.gif";
    }
}

function mot_tool(image) {
    if(image.src.indexOf("_of") == -1) {
        image.src = "/ghv/img/" + image.name + ".gif";
    }
}
// ende sandra toolbar mouse over

// menu mouse over
function mov_menu(image) {
    if(image.src.indexOf("_of") == -1) {
        image.src = "/ghv/img/menu/" + image.name + "_mo.gif";
    }
}

function mot_menu(image) {
    if(image.src.indexOf("_of") == -1) {
        image.src = "/ghv/img/menu/" + image.name + ".gif";
    }
}

function requestMail(recipient, host, tld, subject) {
	location.href="mailto:"+recipient+"@"+host+"."+tld;//+"?subject="+subject;
}



