
<!--
if (document.images) {


howon = new Image();           // Active images
howon.src = "assets/images/nav/howon.gif";  
newson = new Image(); 
newson.src = "assets/images/nav/newson.gif";  
portfolioon = new Image();
portfolioon.src = "assets/images/nav/portfolioon.gif";
whaton = new Image();
whaton.src = "assets/images/nav/whaton.gif";

howoff = new Image();           // Inactive images
howoff.src = "assets/images/nav/howoff.gif";  
newsoff = new Image(); 
newsoff.src = "assets/images/nav/newsoff.gif";  
portfoliooff = new Image();
portfoliooff.src = "assets/images/nav/portfoliooff.gif";
whatoff = new Image();
whatoff.src = "assets/images/nav/whatoff.gif";
}

function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}
function contact(who,where){
  location.href = "mailto:" + who + "@" + where;
 }
//-->

