

<!--     

             aon = new Image();
             aon.src = "images/alistair_1.gif";
             aoff = new Image();
             aoff.src = "images/alistair_2.gif";     

             bon = new Image();
             bon.src = "images/brian_1.gif";
             boff = new Image();
             boff.src ="images/brian_2.gif";     

             con = new Image();
             con.src = "images/james_1.gif";
             coff = new Image();
             coff.src = "images/james_2.gif";     

             don = new Image();
             don.src = "images/martin_1.gif";
             doff = new Image();
             doff.src = "images/martin_2.gif";

             eon = new Image();
             eon.src = "images/alastair_1.gif";
             eoff = new Image();
             eoff.src = "images/alastair_2.gif";
            
 			 fon = new Image();
             fon.src = "images/william_1.gif";
             foff = new Image();
             foff.src = "images/william_2.gif";

             var stag;       
             var tag = 1;
             var rollbuf = "CLEAR";
     

     function rollon(imgName) {
             clearTimeout(stag);
             if ( rollbuf != "CLEAR" ) {
               imgButton = eval(rollbuf + "off.src");
               document[rollbuf].src = imgButton;
               rollbuf = "CLEAR";
             }

             imgButton = eval(imgName + "on.src");
             document[imgName].src = imgButton;
             tag = 1;

     }

     function rolloff(imgName) {
             if (tag == 1) { 
               rollbuf = imgName;
               BLAH = imgName;
               stag = setTimeout("rolloff(BLAH)",20);
               tag = 0;
             }

             else {
               imgButton = eval(imgName + "off.src");
               document[imgName].src = imgButton;
               rollbuf = "CLEAR";
               self.status="Angus Joinery Ltd";
               tag = 1;
             }
     }     

//-->

