<!--

var stop  = -5;        
normal = -720;

/*************************************************************************** */ 
function wysun(baton)
			{										
				menu_new = document.getElementById(baton);
            pozycja = parseInt(menu_new.style.left);	
		      if (window.przesuw){ clearInterval(przesuw) };		      
				postep = setInterval('wysuwacz()',10);
			}
			
			
/*************************************************************************** */ 
function ukryj(pasek,cos)
			{		
			   menu_old = document.getElementById(pasek);  
            polozenie = parseInt( menu_old.style.left); 	
            if (window.postep){ clearInterval(postep)};
			   przesuw = setInterval("cofacz()",1);
			}
			
			
/*************************************************************************** */ 
function wysuwacz()
			{	
			 if( pozycja < stop ) 
			    {				    
			    	pozycja += 20;
			      menu_new.style.left = pozycja ;	
				 }
			 else 
			   {
	          menu_new.style.left = stop;	 				   
			    clearInterval(postep);
			   }
         }
         
         
/*************************************************************************** */     
function cofacz()
			{							
			 if ( polozenie >  normal  )
	         {
			    menu_old.style.left = normal;	
			    clearInterval(przesuw);	
			   }
        }
        
      
        
/**************************************************************************/		
			
-->
