			function showHide(curr_menu,other_menu1,other_menu2,other_menu3,other_menu4,other_menu5,other_menu6,other_menu7,other_menu8,other_menu9,other_menu10,other_menu11,other_menu12,other_menu13,other_menu14)
			{
				current_menu = document.getElementById(curr_menu).style.visibility;
				document.getElementById(other_menu1).style.visibility	= "hidden";
				document.getElementById(other_menu2).style.visibility	= "hidden";
				document.getElementById(other_menu3).style.visibility	= "hidden";
				document.getElementById(other_menu4).style.visibility	= "hidden";
				document.getElementById(other_menu5).style.visibility	= "hidden";
				document.getElementById(other_menu6).style.visibility	= "hidden";
				document.getElementById(other_menu7).style.visibility	= "hidden";
				document.getElementById(other_menu8).style.visibility	= "hidden";
				document.getElementById(other_menu9).style.visibility	= "hidden";
				document.getElementById(other_menu10).style.visibility	= "hidden";
				document.getElementById(other_menu11).style.visibility	= "hidden";
				document.getElementById(other_menu12).style.visibility	= "hidden";
				document.getElementById(other_menu13).style.visibility	= "hidden";
				document.getElementById(other_menu14).style.visibility	= "hidden";
				if(current_menu.toLowerCase()=="visible" || current_menu == "")
				{
					document.getElementById(curr_menu).style.visibility = "hidden";
				}
				else
				{
					document.getElementById(curr_menu).style.visibility = "visible";
				};
			}
			function showHideSub(curr_sub_menu,other_sub_menu1,other_sub_menu2,other_sub_menu3,other_sub_menu4,other_sub_menu5,other_sub_menu6)
			{
				current_sub_menu = document.getElementById(curr_sub_menu).style.visibility;
				document.getElementById(other_sub_menu1).style.visibility	= "hidden";
				document.getElementById(other_sub_menu2).style.visibility	= "hidden";
				document.getElementById(other_sub_menu3).style.visibility	= "hidden";
				document.getElementById(other_sub_menu4).style.visibility	= "hidden";
				document.getElementById(other_sub_menu5).style.visibility	= "hidden";
				document.getElementById(other_sub_menu6).style.visibility	= "hidden";
				if(current_sub_menu.toLowerCase()=="visible" || current_sub_menu == "")
				{
					document.getElementById(curr_sub_menu).style.visibility = "hidden";
				}
				else
				{
					document.getElementById(curr_sub_menu).style.visibility = "visible";
				};
			}
			function roll_over(img_name, img_src)
			{
				document[img_name].src = img_src;
			}
