<!-- Pre load images: home -->
mainbg = new Image(552,348)
mainbg.src = "/images/mainbg.jpg"
HLIheader = new Image(267,80)
HLIheader.src = "/images/HLIheader.gif"
infobooth = new Image(102,81)
infobooth.src = "/images/infobooth.jpg"
timessquare = new Image(102,81)
timessquare.src = "/images/timessquare .jpg"
train = new Image(102,81)
train.src = "train/images/.jpg"

<!-- navigation bar -->
about = new Image(117,25)
about.src = "/images/nav/about.gif"
about_on = new Image(117,25)
about_on.src = "/images/nav/about_on.gif"
jobs = new Image(117,25)
jobs.src = "/images/nav/assign.gif"
jobs_on = new Image(117,25)
jobs_on.src = "/images/nav/assign_on.gif"
contact = new Image(117,25)
contact.src = "/images/nav/contact.gif"
contact_on = new Image(117,25)
contact_on.src = "/images/nav/contact_on.gif"
home = new Image(117,25)
home.src = "/images/nav/home.gif"
home_on = new Image(117,25)
home_on.src = "/images/nav/home_on.gif"
team = new Image(117,25)
team.src = "/images/nav/search.gif"
team_on = new Image(117,25)
team_on.src = "/images/nav/search_on.gif"
resume = new Image(117,42)
resume.src = "/images/nav/resume.gif"
resume_on = new Image(117,42)
resume_on.src = "/images/nav/resume_on.gif"

<!-- sections -->
sub_right = new Image(102,348)
sub_right.src = "/images/sections/sub_right.gif"
bridgewires = new Image(190,33)
bridgewires.src = "/images/sections/bridgewires.gif"
about_title = new Image(252,33)
about_title.src = "/images/sections/about_title.gif"
completed_title = new Image(252,33)
completed_title.src = "/images/sections/completed_title.gif"
contact_title = new Image(252,33)
contact_title.src = "/images/sections/contact_title.gif"
submit_title = new Image(252,33)
submit_title.src = "/images/sections/submit_title.gif"
current_title = new Image(252,33)
current_title.src = "/images/sections/current_title.gif"
search_title = new Image(252,33)
search_title.src = "/images/sections/search_title.gif"

function changeOn(img) {
	switch (img.name) {
	case "home":
		img.src=home_on.src;
		window.status="Home";
		break;
	case "about":
		img.src=about_on.src;
		window.status="About Howe-Lewis International";
		break;
	case "team":
		img.src=team_on.src;
		window.status="Meet our Search Team";
		break;
	case "jobs":
		img.src=jobs_on.src;
		window.status="View our Current Assignments";
		break;
	case "contact":
		img.src=contact_on.src;
		window.status="Contact Us";
		break;
	default:
		img.src=resume_on.src;
		window.status="Submit your resume to Howe-Lewis";
	}
	return true;
}

function changeOff(img_on) {
	switch (img_on.name) {
	case "home":
		img_on.src=home.src;
		break;
	case "about":
		img_on.src=about.src;
		break;
	case "team":
		img_on.src=team.src;
		break;
	case "jobs":
		img_on.src=jobs.src;
		break;
	case "contact":
		img_on.src=contact.src;
		break;
	default:
		img_on.src=resume.src;
	}
	window.status="";
}