if(document.images) {
pics = new Array();
pics[1] = new Image();
pics[1].src = "/images/structure/swpp-grey.png";
pics[2] = new Image();
pics[2].src = "/images/structure/swpp-colour.png";
}
function changer(from,to) {
if(document.images) {
document.images[from].src = pics[to].src;
}
}