// JavaScript Document

if(document.images) {
pics = new Array();
pics[1] = new Image();
pics[1].src = "images/butchers_top6.jpg";
pics[2] = new Image();
pics[2].src = "images/butchers_top3.jpg";
pics[3] = new Image();
pics[3].src = "images/home_top1.jpg";
pics[4] = new Image();
pics[4].src = "images/butchers_top1.jpg";

}
  function changer(from,to) {
  if(document.images) {
  document.images[from].src = pics[to].src;
    }
  }

