if (document.images) {

//	OFF MENU SRC
var about_us_off = new Image(); about_us_off.src = "/images/index/about_us_off.gif";
var our_services_off = new Image(); our_services_off.src = "/images/index/our_services_off.gif";
var whats_new_off = new Image(); whats_new_off.src = "/images/index/whats_new_off.gif";
var in_your_words_off = new Image(); in_your_words_off.src = "/images/index/in_your_words_off.gif";
var healthy_living_off = new Image(); healthy_living_off.src = "/images/index/healthy_living_off.gif";
var visitor_info_off = new Image(); visitor_info_off.src = "/images/index/visitor_info_off.gif";
var career_opp_off = new Image(); career_opp_off.src = "/images/index/career_opp_off.gif";
var ways_to_give_off = new Image(); ways_to_give_off.src = "/images/index/ways_to_give_off.gif";
var your_feedback_off = new Image(); your_feedback_off.src = "/images/index/your_feedback_off.gif";

//	ON MENU SRC
var about_us_on = new Image(); about_us_on.src = "/images/index/about_us_on.gif";
var our_services_on = new Image(); our_services_on.src = "/images/index/our_services_on.gif";
var whats_new_on = new Image(); whats_new_on.src = "/images/index/whats_new_on.gif";
var in_your_words_on = new Image(); in_your_words_on.src = "/images/index/in_your_words_on.gif";
var healthy_living_on = new Image(); healthy_living_on.src = "/images/index/healthy_living_on.gif";
var visitor_info_on = new Image(); visitor_info_on.src = "/images/index/visitor_info_on.gif";
var career_opp_on = new Image(); career_opp_on.src = "/images/index/career_opp_on.gif";
var ways_to_give_on = new Image(); ways_to_give_on.src = "/images/index/ways_to_give_on.gif";
var your_feedback_on = new Image(); your_feedback_on.src = "/images/index/your_feedback_on.gif";


}



//	TURN ON IMG
function turnon(imgName) {
	if (document.all){ // if using ie
	    document.all[imgName].src = eval (imgName + '_on.src');
	  }
	  else if (document.getElementById){ // if using netscape6
	  	document.getElementById(imgName).src = eval (imgName + '_on.src');
	  }
}

//	TURN OFF IMG
function turnoff(imgName) {
	if (document.all){ // if using ie
	    document.all[imgName].src = eval (imgName + '_off.src');
	  }
	  else if (document.getElementById){ // if using netscape6
	  	document.getElementById(imgName).src = eval (imgName + '_off.src');
	  }
}


