// JavaScript Document

			jQuery(document).ready(function(){
       jQuery("#min").click(	

            function () {
		jQuery("#max").fadeIn();
		jQuery("#listavoladora").css("position", "fixed"); 
		 jQuery("#listavoladora").animate({
			 left: "60px",
			 top:"95%"
        }, 400); 
		 
		 jQuery("#listavoladora ul li").fadeOut();
		 jQuery("#footVol").fadeOut();
		 jQuery("#max").fadeIn();
		 jQuery("#min").fadeOut();
		 }
                                    );		
			                                      });
			
				jQuery(document).ready(function(){
       jQuery("#max").fadeOut();
	   jQuery("#min").fadeIn();
	   jQuery("#max").click(	

            function () {
		jQuery("#listavoladora").css("position", "absolute"); 
		 jQuery("#listavoladora").animate({
			 marginLeft: "47px",
			 left:"941px",
			 top:"300px"
        }, 400); 
		 
		 jQuery("#listavoladora ul li").fadeIn();
		 jQuery("#footVol").fadeIn();
		  jQuery("#max").fadeOut();
		  jQuery("#min").fadeIn();
			                   }
                                    );		
			                                      });