<!--

logo = new Image();
logo.src = "img/banner.png";

bg = new Image();
bg.src = "img/tracks.png";

if (document.images) {

home_off = new Image();
home_off.src = "img/nav_home_n.gif";
home_on = new Image();
home_on.src = "img/nav_home_r.gif";    

about_off = new Image();
about_off.src = "img/nav_about_n.gif";
about_on = new Image();
about_on.src = "img/nav_about_r.gif";    

portfolio_off = new Image();
portfolio_off.src = "img/nav_portfolio_n.gif";
portfolio_on = new Image();
portfolio_on.src = "img/nav_portfolio_r.gif";    

video_off = new Image();
video_off.src = "img/nav_video_n.gif";
video_on = new Image();
video_on.src = "img/nav_video_r.gif";    

demo_off = new Image();
demo_off.src = "img/nav_demo_n.gif";
demo_on = new Image();
demo_on.src = "img/nav_demo_r.gif";    

faq_off = new Image();
faq_off.src = "img/nav_faq_n.gif";
faq_on = new Image();
faq_on.src = "img/nav_faq_r.gif";    

news_off = new Image();
news_off.src = "img/nav_news_n.gif";
news_on = new Image();
news_on.src = "img/nav_news_r.gif";  

links_off = new Image();
links_off.src = "img/nav_links_n.gif";
links_on = new Image();
links_on.src = "img/nav_links_r.gif";  

quote_off = new Image();
quote_off.src = "img/nav_quote_n.gif";
quote_on = new Image();
quote_on.src = "img/nav_quote_r.gif";  

contact_off = new Image();
contact_off.src = "img/nav_contact_n.gif";
contact_on = new Image();
contact_on.src = "img/nav_contact_r.gif";     

employment_off = new Image();
employment_off.src = "img/nav_employment_n.gif";
employment_on = new Image();
employment_on.src = "img/nav_employment_r.gif";       
}

function hiLite(imgDocID,imgObjName) {
	if (document.images) {
		document.images[imgDocID].src = eval(imgObjName + ".src")
	}
}
