//JavaScript Rollover Buttons
if(document.images) {
pics = new Array();
pics[01] = new Image();
pics[01].src = "homeOff.jpg";
pics[02] = new Image();
pics[02].src = "homeOn.jpg";
pics[03] = new Image();
pics[03].src = "earringsOff.jpg";
pics[04] = new Image();
pics[04].src = "earringsOn.jpg";
pics[05] = new Image();
pics[05].src = "braceletsOff.jpg";
pics[06] = new Image();
pics[06].src = "braceletsOn.jpg";
pics[07] = new Image();
pics[07].src = "necklacesOff.jpg";
pics[08] = new Image();
pics[08].src = "necklacesOn.jpg";
pics[09] = new Image();
pics[09].src = "informationOff.jpg";
pics[10] = new Image();
pics[10].src = "informationOn.jpg";
pics[11] = new Image();
pics[11].src = "policiesOff.jpg";
pics[12] = new Image();
pics[12].src = "policiesOn.jpg";
pics[13] = new Image();
pics[13].src = "linksOff.jpg";
pics[14] = new Image();
pics[14].src = "linksOn.jpg";
pics[15] = new Image();
pics[15].src = "sitemapOff.jpg";
pics[16] = new Image();
pics[16].src = "sitemapOn.jpg";
pics[17] = new Image();
pics[17].src = "contactOff.jpg";
pics[18] = new Image();
pics[18].src = "contactOn.jpg";
}
function changer(from,to) {
if(document.images) {
document.images[from].src = pics[to].src;
}
}
//-->


