var choosePayment = function(el) {

    $.get(el.href, null, function(data) {
        $('#paymentChooser .content').html(data);
    });

    $("#paymentChooser").overlay().load();
    _gaq.push(['_trackEvent', 'Website', 'PaymentChooser', el.title]);
};

$(document).ready(function() {
    $("#paymentChooser").overlay({
        effect: 'default',
        load: false,
        top: 300,
        closeOnClick: false
    });
});

