$(document).ready(function(){
    $('a[href*="source.php"]').click(function(){
        $("div#pageloading").fadeIn();
    });
    $('form[action*="source.php"]').submit(function(){
        $("div#pageloading").fadeIn();
    });
});
