<!-- 

// System bar text

function statusSet(windowStatus) {
window.status = windowStatus
}
window.defaultStatus = ""

// Preloads

var imglist = new Array (
"images/cellardoor_on.gif",
"images/artist_on.gif",
"images/location_on.gif",
"images/tellafriend_on.gif",
"images/mailinglist_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){
   loadcellardoor=new Image()
   loadcellardoor.src='images/cellardoor_on.gif'
   loadartist=new Image()
   loadartist.src='images/artist_on.gif'
   loadlocation=new Image()
   loadlocation.src='images/location_on.gif'
   loadtellafriend=new Image()
   loadtellafriend.src='images/tellafriend_on.gif'
   loadmailinglist=new Image()
   loadmailinglist.src='images/mailinglist_on.gif'
}

//-->