/***********************************
* loading.js
*
* Defines an event on all non-js
* instantiating and non-# href bearing
* anchors.
* 
* Created By eculver
* Created On 03/10/08
************************************/

$(document).ready(function(){
    $("a").click(function () {
        // make sure this link is causing a page reload (i.e., no javascript, no #)
        var href = $(this).attr("href");
        var target = $(this).attr("target").toLowerCase();
        if(href.indexOf("javascript") == -1 &&  href.indexOf("#") == -1 && target.indexOf("_blank") == -1)    
            $('#global-loading').css("visibility", "visible");
    });
});
