Changes the Handler call request to get new image dimensions.
// As an example
$('.quickGivingPanel .donationAmount .checkboxRadio img').each(function() {
var updatedSrc = $(this).attr("src").replace(/w=([0-9]*)&h=([0-9]*)/, "w=720&h=405");
$(this).attr("src", updatedSrc);
});