function transparencia(ref) {
    $(ref).hover(
      function () {
        $(this).css('filter','alpha(opacity=80)');
        $(this).css('opacity','.80');
      },
      function () {
        $(this).css('filter','alpha(opacity=100)');
        $(this).css('opacity','1.0');
      }
    );
}
function rtransparencia(ref) {
    $(ref).hover(
      function () {
        $(this).css('filter','alpha(opacity=100)');
        $(this).css('opacity','1.0');
      },
      function () {
        $(this).css('filter','alpha(opacity=80)');
        $(this).css('opacity','.80');
      }
    );
}
