// JavaScript Document

// preloads the image
document.imageArray = new Array(7);
var imageNumbers = new Array(5, 10, 12, 14, 16, 19, 21)
for (i=1; i<=7; i++) {
x = imageNumbers[i-1];
 document.imageArray[x] = new Image;
document.imageArray[x].src = "images/home" + i + "gold.jpg";
}

function doOver(count, name) {
document.images[name].src='images/home' + count + 'gold.jpg'; 
return false;
}

function doOff(count, name){
document.images[name].src='images/home' + count + 'white.jpg';
}

function noSpam(user,domain) {
locationstring = "mailto:" + user + "@" + domain; 
window.location = locationstring; 
}

