// JavaScript Document
if(document.images) {
pics = new Array(); 
pics[1] = new Image();
pics[1].src = "images/lure01a.png"; 
pics[2] = new Image();
pics[2].src = "images/lure01b.png";
pics[3] = new Image();
pics[3].src = "images/lure02a.png"; 
pics[4] = new Image();
pics[4].src = "images/lure02b.png";
pics[5] = new Image();
pics[5].src = "images/lure03a.png"; 
pics[6] = new Image();
pics[6].src = "images/lure03b.png";
pics[7] = new Image();
pics[7].src = "images/lure04a.png"; 
pics[8] = new Image();
pics[8].src = "images/lure04b.png";
pics[9] = new Image();
pics[9].src = "images/lure05a.png"; 
pics[10] = new Image();
pics[10].src = "images/lure05b.png";
}

function changer(from,to) {
if(document.images) {
document.images[from].src = pics[to].src;
}
}
