﻿(function($){
    //TABS MUSICA
    $(document).ready(function() {
      $('#botonera .botonVIDEOS').click(function(){
        //ocultar todos los div
        $("#TABS div.videointerior").hide();
        //motrar el div correspondiente     
        $("#tab_"+this.id).show("fast");
      });
    });
    
    $(document).ready(function() {
       $("#vermas").click(function(){
         $("#TABS div.videointerior").hide();
        //motrar el div correspondiente     
        $("#tab_masinfo").show("fast");
       });
   });
   
   $(document).ready(function() {
    $("#botonComentar").click(function() {
       $("#TABS div.videointerior").hide();
       //motrar el div correspondiente
       $("#tab_comentarios").show("fast");
       });
   });
    
    
})(jQuery);
