<!-- 

// System bar text

function statusSet(windowStatus) {
window.status = windowStatus
}
window.defaultStatus = ""

// Preloads

var imglist = new Array (
"images/team_on.gif",
"images/health_on.gif",
"images/vineyards_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){
   loadteam=new Image()
   loadteam.src='images/team_on.gif'
   loadhealth=new Image()
   loadhealth.src='images/health_on.gif'
   loadvineyards=new Image()
   loadvineyards.src='images/vineyards_on.gif'
}

//-->