TopUp.addPresets({ ".top_up": { shaded: 1, effect: "fade" } });
$(function(){
  var i = $('.top_up').children('img');
  i.mouseenter(function(e){ $(this).fadeTo('fast',0.7); });
  i.mouseleave(function(e){ $(this).fadeTo('fast',1.0); });
});

