/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){
  $("#hide").click(function(){
    $("div.coment").hide(1000);});
  $("#show").click(function(){
    $("div.coment").show(1000);});

/*esto nos muestra y oculta el div coment
 *        <button id="hide">Hide</button>
 *        <button id="show">Show</button>
 **/

});

