	function switchmenu(ele,direction)
	{
		if (direction == 'in') 
		{		
			ele.style.background =  'white';
			ele.style.color = '#033FA2';
		}
		else
		{
			ele.style.background =  '#033FA2';
			ele.style.color = 'white';	
		}
	}
	