<!-- 

// System bar text

function statusSet(windowStatus) {
window.status = windowStatus
}
window.defaultStatus = ""

// Preloads

var imglist = new Array (
"images/jams_on.gif",
"images/marmalades_on.gif",
"images/chutneys_on.gif",
"images/sauces_on.gif",
"images/condiments_on.gif",
"images/diabetic_on.gif",
"images/specialty_on.gif",
"images/gourmet_on.gif",
"images/giftbaskets_on.gif"
);

var imgs = new Array();

var count
if (document.images)

 for (count=0; count<imglist.length; count++)
    {imgs[count]=new Image(); imgs[count].src=imglist[count];}

// Navigation buttons

if(document.images){
   loadjams=new Image()
   loadjams.src='images/jams_on.gif'
   loadmarmalades=new Image()
   loadmarmalades.src='images/marmalades_on.gif'
   loadchutneys=new Image()
   loadchutneys.src='images/chutneys_on.gif'
   loadsauces=new Image()
   loadsauces.src='images/sauces_on.gif'
   loadcondiments=new Image()
   loadcondiments.src='images/condiments_on.gif'
   loaddiabetic=new Image()
   loaddiabetic.src='images/diabetic_on.gif'
   loadspecialty=new Image()
   loadspecialty.src='images/specialty_on.gif'
   loadgourmet=new Image()
   loadgourmet.src='images/gourmet_on.gif'
   loadgiftbaskets=new Image()
   loadgiftbaskets.src='images/giftbaskets_on.gif'
}

//-->