/* requires menu.js (menu.php) AND MUST BE IN THE END OF THE HTML PAGE */

/* define the mouse over functions for the nav bar ends to change image on hover */


var hover_trg_left=getElement("left_tab");
var hover_img_left=getElement("left_img");

var hover_trg_right=getElement("right_tab");
var hover_img_right=getElement("right_img");

var path = "http://ewh.org/ewhsys/template_files/images/";


hover_trg_left.onmouseover=function(){

	hover_img_left.src= path + "tab_left_on.gif";
}

hover_trg_left.onmouseout=function(){

	if (left_bar_default_on)
		hover_img_left.src= path + "tab_left_on.gif";
	else
		hover_img_left.src= path + "tab_left.gif";
}

hover_trg_right.onmouseover=function(){

	hover_img_right.src= path + "tab_right_on.gif";
}

hover_trg_right.onmouseout=function(){

	if (right_bar_default_on)
		hover_img_right.src= path + "tab_right_on.gif";
	else
		hover_img_right.src= path + "tab_right.gif";
}

