$(document).ready (function () {

  $('.tipavideo').click(function () 
{ //.tipavideo.click
  
}
 ).hover (function ()
{ //.tipavideo.mouseIn
  $(this).children(':last').show();
  $(this).children(':first').hide();
}
, function () 
{ //.tipavideo.mouseOut
  $(this).children(':first').show();
  $(this).children(':last').hide();
}
);

});
