var msOvrColor = 'b'; // Unless set to 'a' in the body of the document
// in index.html and contact.html (b=gold, a=blue)
// Preload 8 images
//var new Link[8];
//for (i=1;i++;i<=8) {
//  new Link[i].a = new Image();
//  Link[i,'a'].src = "images/second_passports_" + "p0" + i + "a.gif";
//  new Link[i].b = new Image();
//  Link[i',b'].src = "images/second_passports_" + "p0" + i + "b.gif";
//}
function msOvr(linkID) { // mouse over; color == 'a' for blue or 'b' for 'gold'
document.getElementById(linkID).src = "images/second_passports_" + linkID + msOvrColor + ".gif";
}
function msOut(linkID) { // mouse out
document.getElementById(linkID).src = "images/second_passports_" + linkID + ".gif";
}
