
<!--
if (document.images) {

homeon = new Image();           // Active images
homeon.src = "../images/main/home_on.gif";  
wvaneon = new Image(); 
wvaneon.src = "../images/main/wvane_on.gif";  
arcon = new Image();
arcon.src = "../images/main/arc_on.gif";
birdon = new Image();
birdon.src = "../images/main/bird_on.gif";
audubonon = new Image();
audubonon.src = "../images/main/audubon_on.gif";
signon = new Image();
signon.src = "../images/main/sign_on.gif";
galleryon = new Image();
galleryon.src = "../images/main/gallery_on.gif";

homeoff = new Image();           // Inactive images
homeoff.src = "../images/main/home_off.gif";  
wvaneoff = new Image(); 
wvaneoff.src = "../images/main/wvane_off.gif";  
arcoff = new Image();
arcoff.src = "../images/main/arc_off.gif";
birdoff = new Image();
birdoff.src = "../images/main/bird_off.gif";
audubonoff = new Image();
audubonoff.src = "../images/main/audubon_off.gif";
signoff = new Image();
signoff.src = "../images/main/sign_off.gif";
galleryoff = new Image();
galleryoff.src = "../images/main/gallery_off.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 openAudubon(url) {
        	Window1 = window.open(url, 'Window1', 'toolbar=no,location=no,scrollbars=no,width=380,height=380')
        }
function veryverysecret(who,where){
  location.href = "mailto:" + who + "@" + where;
 }	
//-->

