// JavaScript Document

// preloads the image
document.imageArray = new Array(7);
for (i=1; i<=7; i++) {
 document.imageArray[i-1] = new Image;
document.imageArray[i-1].src = "../images/" + i + "gold.jpg";
}

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

function doOff(count){
document.images['l' + count].src='../images/' + count + 'link.jpg';
}

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