// JavaScript Document
 $(document).ready(function(){  

	   
     // When a link is clicked  
     $("ul.botonera li").click(function () {  
         // switch all tabs off  
         $("ul.botonera .active").removeClass("active");  
           
         // switch this tab on  
         $(this).addClass("active");  
		   
         // slide all elements with the class 'content' up  
         $(".bottomBottom span div").hide();  
           
         // Now figure out what the 'title' attribute value is and find the element with that id.  Then slide that down.  
         var content_show = $(this).attr("title"); 

         $(".bottomBottom span div#"+content_show).show();  
         return false;
     }); 
   });  
	
		

