<!-- 

// System bar text

function statusSet(windowStatus) {
window.status = windowStatus
}
window.defaultStatus = ""

// Preloads

var imglist = new Array (
"images/welcome_on.gif",
"images/aboutus_on.gif",
"images/whatsnew_on.gif",
"images/thewines_on.gif",
"images/orders_on.gif",
"images/distributors_on.gif",
"images/resources_on.gif",
"images/contactus_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){
   loadwelcome=new Image()
   loadwelcome.src='images/welcome_on.gif'
   loadaboutus=new Image()
   loadaboutus.src='images/aboutus_on.gif'
   loadwhatsnew=new Image()
   loadwhatsnew.src='images/whatsnew_on.gif'
   loadthewines=new Image()
   loadthewines.src='images/thewines_on.gif'
   loadorders=new Image()
   loadorders.src='images/orders_on.gif'
   loaddistributors=new Image()
   loaddistributors.src='images/distributors_on.gif'
   loadresources=new Image()
   loadresources.src='images/resources_on.gif'
   loadcontactus=new Image()
   loadcontactus.src='images/contactus_on.gif'
}

//-->