<!--

if (document.images) {

// -----------------
// HEADER ROLLOVERS
// -----------------

var headerPath="/morrells/images/header/";
// alert (headerPath);

 homeOn = new Image();
 homeOn.src = headerPath+"2home.gif";
 homeOff = new Image();
 homeOff.src = headerPath+"home.gif";

 catalogueOn = new Image();
 catalogueOn.src = headerPath+"2catalogue.gif";
 catalogueOff = new Image();
 catalogueOff.src = headerPath+"catalogue.gif";

 liveOn = new Image();
 liveOn.src = headerPath+"2live.gif";
 liveOff = new Image();
 liveOff.src = headerPath+"live.gif";

// featuredOn = new Image();
// featuredOn.src = headerPath+"2featured.gif";
// featuredOff = new Image();
// featuredOff.src = headerPath+"featured.gif";

 printOn = new Image();
 printOn.src = headerPath+"2print.gif";
 printOff = new Image();
 printOff.src = headerPath+"print.gif";

 buyOn = new Image();
 buyOn.src = headerPath+"2buy.gif";
 buyOff = new Image();
 buyOff.src = headerPath+"buy.gif";

 auctionOn = new Image();
 auctionOn.src = headerPath+"2auction.gif";
 auctionOff = new Image();
 auctionOff.src = headerPath+"auction.gif";

 contactOn = new Image();
 contactOn.src = headerPath+"2contact.gif";
 contactOff = new Image();
 contactOff.src = headerPath+"contact.gif";

 helpOn = new Image();
 helpOn.src = headerPath+"2help.gif";
 helpOff = new Image();
 helpOff.src = headerPath+"help.gif";


// -----------------
// LEFTNAV ROLLOVERS
// -----------------

var leftnavPath="/morrells/images/leftnav/";
// alert (leftnavPath);

 searchOn = new Image();
 searchOn.src = leftnavPath+"2search.gif";
 searchOff = new Image();
 searchOff.src = leftnavPath+"search.gif";

 loginOn = new Image();
 loginOn.src = leftnavPath+"2login.gif";
 loginOff = new Image();
 loginOff.src = leftnavPath+"login.gif";

 registrationOn = new Image();
 registrationOn.src = leftnavPath+"2registration.gif";
 registrationOff = new Image();
 registrationOff.src = leftnavPath+"registration.gif";

 myauctionsOn = new Image();
 myauctionsOn.src = leftnavPath+"2myauctions.gif";
 myauctionsOff = new Image();
 myauctionsOff.src = leftnavPath+"myauctions.gif";

 newsletterOn = new Image();
 newsletterOn.src = leftnavPath+"2newsletter.gif";
 newsletterOff = new Image();
 newsletterOff.src = leftnavPath+"newsletter.gif";

 expressOn = new Image();
 expressOn.src = leftnavPath+"2express.gif";
 expressOff = new Image();
 expressOff.src = leftnavPath+"express.gif";



// -----------------
// CATALOGUE ROLLOVERS
// -----------------

var catPath="/morrells/images/cat/";
// alert (catPath);

 placebidOn = new Image ();
 placebidOn.src = catPath+"2place_bid.gif";
 placebidOff = new Image ();
 placebidOff.src = catPath+"place_bid.gif";

 detailsOn = new Image ();
 detailsOn.src = catPath+"2details.gif";
 detailsOff = new Image ();
 detailsOff.src = catPath+"details.gif";


// -----------------
// MYAUCTION ROLLOVERS
// -----------------
var myaucPath="/morrells/images/myauction/";

 winOn = new Image ();
 winOn.src = myaucPath+"2win.gif";
 winOff = new Image ();
 winOff.src = myaucPath+"win.gif";

 trackOn = new Image ();
 trackOn.src = myaucPath+"2track.gif";
 trackOff = new Image ();
 trackOff.src = myaucPath+"track.gif";

 loseOn = new Image ();
 loseOn.src = myaucPath+"2lose.gif";
 loseOff = new Image ();
 loseOff.src = myaucPath+"lose.gif";

 lostOn = new Image ();
 lostOn.src = myaucPath+"2lost.gif";
 lostOff = new Image ();
 lostOff.src = myaucPath+"lost.gif";

 wonOn = new Image ();
 wonOn.src = myaucPath+"2won.gif";
 wonOff = new Image ();
 wonOff.src = myaucPath+"won.gif";



}
function turnOn(imageName) {
 if (document.images) {
 document[imageName].src = eval(imageName + "On.src");
  }
}
function turnOff(imageName) {
 if (document.images) {
 document[imageName].src = eval(imageName + "Off.src");
 }
}

//-->