if (document.images) {

	home_on = new Image( ); home_on.src = "/images/nav/home_on.gif";
	home_off = new Image( ); home_off.src = "/images/nav/home_off.gif";

	legend_on = new Image( ); legend_on.src = "/images/nav/legend_on.gif";
	legend_off = new Image( ); legend_off.src = "/images/nav/legend_off.gif";

	photo_gallery_on = new Image( ); photo_gallery_on.src = "/images/nav/photo_gallery_on.gif";
	photo_gallery_off = new Image( ); photo_gallery_off.src = "/images/nav/photo_gallery_off.gif";

	witnesses_on = new Image( ); witnesses_on.src = "/images/nav/witnesses_on.gif";
	witnesses_off = new Image( ); witnesses_off.src = "/images/nav/witnesses_off.gif";

	film_on = new Image( ); film_on.src = "/images/nav/film_on.gif";
	film_off = new Image( ); film_off.src = "/images/nav/film_off.gif";

	filmmaker_on = new Image( ); filmmaker_on.src = "/images/nav/filmmaker_on.gif";
	filmmaker_off = new Image( ); filmmaker_off.src = "/images/nav/filmmaker_off.gif";

	trailer_on = new Image( ); trailer_on.src = "/images/nav/trailer_on.gif";
	trailer_off = new Image( ); trailer_off.src = "/images/nav/trailer_off.gif";
	
	home_top_on = new Image( ); home_top_on.src = "/images/nav/home_top_on.gif";
	home_top_off = new Image( ); home_top_off.src = "/images/nav/home_top_off.gif";

	contact_on = new Image( ); contact_on.src = "/images/nav/contact_on.gif";
	contact_off = new Image( ); contact_off.src = "/images/nav/contact_off.gif";
	
	news_on = new Image( ); news_on.src = "/images/nav/news_on.gif";
	news_off = new Image( ); news_off.src = "/images/nav/news_off.gif";

	storyboards_on = new Image( ); storyboards_on.src = "/images/nav/storyboards_on.gif";
	storyboards_off = new Image( ); storyboards_off.src = "/images/nav/storyboards_off.gif";
	

	haunted_set_on = new Image( ); haunted_set_on.src = "/images/nav/haunted_set_on.gif";
	haunted_set_off = new Image( ); haunted_set_off.src = "/images/nav/haunted_set_off.gif";

function imgOn(imgField) {
	if (document.images) {
		document[imgField].src = eval(imgField + "_on.src")
	}
}

function imgOff(imgField) {
	if (document.images) {
		document[imgField].src = eval(imgField + "_off.src")
	}
}

}