$(document).ready(function() {

 $('span.roundBtn, a.roundBtn').hover(function() {
  $(this).append($('<div/>').css({'position':'absolute','top':0,'left':0,'right':0,'bottom':0,'background-color':'#ffffff','opacity':0.3,'cursor':'pointer'}).click(function() {
   if ($(this).siblings('button').length==1) {
    $(this).siblings('button')[0].click();
   }
  }));
 }, function() {
  $(this).children('div').remove();
 });

});