<!-- JavaScript by web-architect copyright © 2000, web-architect.
if(document.images) {
pics = new Array(); 
pics[1] = new Image();
pics[1].src = "images/twitter.jpg"; 
pics[2] = new Image();
pics[2].src = "images/twitter_hover.jpg";
pics[3] = new Image();
pics[3].src = "images/facebook.jpg"; 
pics[4] = new Image();
pics[4].src = "images/facebook_hover.jpg";
}

function changer(from,to) {
if(document.images) {
document.images[from].src = pics[to].src;
}
}
//-->

