

 $(document).ready(function() {
 
$("#menubox").css( { 'top':'-33px'} );

$("#menubox").animate( { top:"32px" } , 600 );

$("#langchoice").css( { 'right':'-100px'} );
$("#langchoice").animate( { right:"10px" } , 600 );

$("#h1box > h1").css( { 'margin-left':'300px' } );
$("#h1box > H1").animate( { marginLeft:"0" } , 600 );

// filter(':not(:animated)').

		
		   $("#menubox > a").hover( 		  
			   function() { 
			   		$(this).filter(':not(:animated)').animate( { top:"0px" } , 150,
									
									function() { 			
									$(this).animate( { top:"-66px" } ,0 );
									$(this).animate( { top:"-33px" } ,150 ); }
															  
															  
															  
															  
															  );

			   },  function() {}		   
		   );


			
		   
   
 });

	  