<!-- 

// System bar text

function statusSet(windowStatus) {
window.status = windowStatus
}
window.defaultStatus = ""

// Preloads

var imglist = new Array (
"images/newsletter_on.gif",
"images/community_on.gif",
"images/graperide_on.gif",
"images/prescript_on.gif",
"images/gallery_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){
   loadnewsletter=new Image()
   loadnewsletter.src='images/newsletter_on.gif'
   loadcommunity=new Image()
   loadcommunity.src='images/community_on.gif'
   loadgraperide=new Image()
   loadgraperide.src='images/graperide_on.gif'
   loadprescript=new Image()
   loadprescript.src='images/prescript_on.gif'
   loadgallery=new Image()
   loadgallery.src='images/gallery_on.gif'
}

//-->
