<!-- JavaScript by web-architect copyright © 2000, web-architect.
if(document.images) {
pictures = new Array(); 
pictures[1] = new Image();
pictures[1].src = "IMG_2275-bg.jpg"; 
pictures[2] = new Image();
pictures[2].src = "IMG_2277-bg.jpg";  
}

function swapper(from,to) {
if(document.images) {
document.images[from].src = pictures[to].src;
}
}
//-->