if (document.images) {

	wholesale_on = new Image( ); wholesale_on.src = "/images/wholesale_over.gif";
	wholesale_off = new Image( ); wholesale_off.src = "/images/wholesale.gif";

	shows_on = new Image( ); shows_on.src = "/images/show_schedule_over.gif";
	shows_off = new Image( ); shows_off.src = "/images/show_schedule.gif";

	bookmark_on = new Image( ); bookmark_on.src = "/images/bookmk_wish_over.gif";
	bookmark_off = new Image( ); bookmark_off.src = "/images/bookmk_wish.gif";
	
	stores_on = new Image( ); stores_on.src = "/images/store_locator_over.gif";
	stores_off = new Image( ); stores_off.src = "/images/store_locator.gif";
	
	contact_on = new Image( ); contact_on.src = "/images/contact_us_over.gif";
	contact_off = new Image( ); contact_off.src = "/images/contact_us.gif";

	stamps_on = new Image( ); stamps_on.src = "/images/stamps_over.gif";
	stamps_off = new Image( ); stamps_off.src = "/images/stamps.gif";

	supplies_on = new Image( ); supplies_on.src = "/images/supplies_over.gif";
	supplies_off = new Image( ); supplies_off.src = "/images/supplies.gif";

	gallery_on = new Image( ); gallery_on.src = "/images/gallery_over.gif";
	gallery_off = new Image( ); gallery_off.src = "/images/gallery.gif";

	instructions_on = new Image( ); instructions_on.src = "/images/instructions_over.gif";
	instructions_off = new Image( ); instructions_off.src = "/images/instructions.gif";

	mailing_list_on = new Image( ); mailing_list_on.src = "/images/mailing_list_over.gif";
	mailing_list_off = new Image( ); mailing_list_off.src = "/images/mailing_list.gif";

//	_on = new Image( ); _on.src = "/images/_over.gif";
//	_off = new Image( ); _off.src = "/images/.gif";


function imgOn(imgField) {
	if (document.images) {
		document[imgField].src = eval(imgField + "_on" + ".src")
	}
} // End function

function imgOff(imgField) {
	if (document.images) {
		document[imgField].src = eval(imgField + "_off" + ".src")
	}
} // End function


} // End if
