		var name;
		var element;
	
		function Change(element)
		{
			if ( element == 'menu1' )
			{
				Show('menu1'); Hide('menu2'); Hide('menu3');
			}
			if ( element == 'menu2' )
			{
				Show('menu2'); Hide('menu1'); Hide('menu3');
			}
			if ( element == 'menu3' )
			{
				Show('menu3'); Hide('menu1'); Hide('menu2');
			}
		}

		function Show(name)
		{

			document.getElementById(name).style.display = 'block';
		}
		
		function Hide(name)
		{
			document.getElementById(name).style.display = 'none';
		}

	function mouseover_menu1_tab()
	{
		document.getElementById("menu1_tab").style.backgroundColor='#fbfbfb';
		document.getElementById("t1").style.color='#000';
	}
	function mouseout_menu1_tab()
	{
		document.getElementById("menu1_tab").style.backgroundColor='#529113';
		document.getElementById("t1").style.color='#fff';
	}
	//---
	function mouseover_menu2_tab()
	{
		document.getElementById("menu2_tab").style.backgroundColor='#fbfbfb';
		document.getElementById("t2").style.color='#000';
	}
	function mouseout_menu2_tab()
	{
		document.getElementById("menu2_tab").style.backgroundColor='#5ea516';
		document.getElementById("t2").style.color='#fff';
	}
	//---
	function mouseover_menu3_tab()
	{
		document.getElementById("menu3_tab").style.backgroundColor='#fbfbfb';
		document.getElementById("t3").style.color='#000';
	}
	function mouseout_menu3_tab()
	{
		document.getElementById("menu3_tab").style.backgroundColor='#69ba18';
		document.getElementById("t3").style.color='#fff';
	}
