$.fn.extend({
    displayLoading : function() {
        return this.each(function() {
            var $this = $(this);
            $this.empty();
            $this.append("<img class=\"ajax-loader\" src=\"http://casual-slander.com/images/ajax-loader.gif\" alt=\"Loading...\" />");
        });
    }
});

$(document).ready(function() {
    /* google analytics */
    if(document.location.host.substr(0,4) != "test") {
        var gaJsHost=(("https:"==document.location.protocol)?"https://ssl.":"http://www.");
        $.getScript(gaJsHost+"google-analytics.com/ga.js", function() {
            try{var pageTracker=_gat._getTracker("UA-10901405-1");pageTracker._trackPageview();} catch(err) {}
        });
    }

    $(".noscript").hide();
});
