$(document).ready(function(){
    $('a').click(function(event) {
        if( $(this).hasClass('needs-loader') ) {
            $('#loader').show();
        }
    });
});
