$(document).ready(function(){
  $("table#loga img").mouseover(function(){
    src=$(this).attr("src");
    src=src.replace(".png","ON.png");
    $(this).attr("src",src);
  });
  
  $("table#loga img").mouseout(function(){
    src=$(this).attr("src");
    src=src.replace("ON.png",".png");
    $(this).attr("src",src);
  });
  
  $(".prodHover").click(function(){
    $(this).next().show();
    return false;
  });

  $(".close").click(function(){
    $(this).parent().hide();
    return false;
  });
  
  $(".vice").click(function(){
    $(this).next().show("fast");
    return false;
  });

  $(".close").click(function(){
    $(this).parent().hide("fast");
    return false;
  });
  
  
});

