var cached=0;

if (document.images){

the_about_off = new Image()
the_about_off.src = "http://www.career-analysis.com/navbar/about.gif"
the_about_on = new Image()
the_about_on.src = "http://www.career-analysis.com/navbar/about_on.gif"

the_contact_off = new Image()
the_contact_off.src = "http://www.career-analysis.com/navbar/contact.gif"
the_contact_on = new Image()
the_contact_on.src = "http://www.career-analysis.com/navbar/contact_on.gif"

the_feedback_off = new Image()
the_feedback_off.src = "http://www.career-analysis.com/navbar/feedback.gif"
the_feedback_on = new Image()
the_feedback_on.src = "http://www.career-analysis.com/navbar/feedback_on.gif"

the_foa_off = new Image()
the_foa_off.src = "http://www.career-analysis.com/navbar/foa.gif"
the_foa_on = new Image()
the_foa_on.src = "http://www.career-analysis.com/navbar/foa_on.gif"

the_news_off = new Image()
the_news_off.src = "http://www.career-analysis.com/navbar/news.gif"
the_news_on = new Image()
the_news_on.src = "http://www.career-analysis.com/navbar/news_on.gif"

the_register_off = new Image()
the_register_off.src = "http://www.career-analysis.com/navbar/register.gif"
the_register_on = new Image()
the_register_on.src = "http://www.career-analysis.com/navbar/register_on.gif"

the_services_off = new Image()
the_services_off.src = "http://www.career-analysis.com/navbar/services.gif"
the_services_on = new Image()
the_services_on.src = "http://www.career-analysis.com/navbar/services_on.gif"

the_submit_off = new Image()
the_submit_off.src = "http://www.career-analysis.com/images/submit.gif"
the_submit_on = new Image()
the_submit_on.src = "http://www.career-analysis.com/images/submit_on.gif"

the_next_off = new Image()
the_next_off.src = "http://www.career-analysis.com/images/next.gif"
the_next_on = new Image()
the_next_on.src = "http://www.career-analysis.com/images/next_on.gif"

the_back_off = new Image()
the_back_off.src = "http://www.career-analysis.com/images/back.gif"
the_back_on = new Image()
the_back_on.src = "http://www.career-analysis.com/images/back_on.gif"

the_home_off = new Image()
the_home_off.src = "http://www.career-analysis.com/navbar/home.gif"
the_home_on = new Image()
the_home_on.src = "http://www.career-analysis.com/navbar/home_on.gif"

cached=1;
}

function imageOn(imgName) {
	if (cached==1) {
	lineOn = eval("the_" + imgName + "_on.src");
	document [imgName].src= lineOn;
	}
}

function imageOff(imgName) {
	if (cached==1) {
	lineOff = eval("the_" + imgName + "_off.src");
	document [imgName].src= lineOff;
	}
}

function formImageOn(imgName, formImg) {
	if (cached==1) {
	lineOn = eval("the_" + imgName + "_on.src");
	formImg.src= lineOn;
	}
}

function formImageOff(imgName, formImg) {
	if (cached==1) {
	lineOff = eval("the_" + imgName + "_off.src");
	formImg.src= lineOff;
	}
}