<!-- 

// System bar text

function statusSet(windowStatus) {
window.status = windowStatus
}
window.defaultStatus = ""

// Preloads

var imglist = new Array (
"images/welcome_on.gif",
"images/profile_on.gif",
"images/services_on.gif",
"images/testimonials_on.gif",
"images/fees_on.gif",
"images/faq_on.gif",
"images/contact_on.gif",
"images/links_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'
   loadprofile=new Image()
   loadprofile.src='images/profile_on.gif'
   loadservices=new Image()
   loadservices.src='images/services_on.gif'
   loadtestimonials=new Image()
   loadtestimonials.src='images/testimonials_on.gif'
   loadfees=new Image()
   loadfees.src='images/fees_on.gif'
   loadfaq=new Image()
   loadfaq.src='images/faq_on.gif'
   loadcontact=new Image()
   loadcontact.src='images/contact_on.gif'
   loadlinks=new Image()
   loadlinks.src='images/links_on.gif'
}

//-->