 function open(id)
	{  
		close(id);
		if (document.getElementById('menu'+id).style.display=='none')
		{
		  if (id%2==0)
		 {
		   document.getElementById('menu'+id).style.marginLeft=201+'px';
		 }
	   	 else
		 {
		  document.getElementById('menu'+id).style.marginLeft=2+'px';
		  }
		   var marge=2;
		   var i=0;		  		    
			for (i=1;i<50;i++)
			{			  
			  if (i % 2!=0 && i!=1)
			  {
			   marge=marge+33;
			  }
			  if (id==i)
			  {
			    break;
			  }			  
			}
		  document.getElementById('menu'+id).style.marginTop=marge+'px';
		  document.getElementById('menu'+id).style.display='block';
		}
		else
		{
		  document.getElementById('menu'+id).style.display='none';
		}
		
    }
	
	function close(id)
	{
	   for (var i=1;i<50;i++)
			{
			   if (id!=i && document.getElementById('menu'+i)!=null)
			   {
			   
				document.getElementById('menu'+i).style.display='none';
			   }
			}
	}
