
	// Begin processing JQuery commands when DOM is first ready
(function($){
        $(document).ready(function(){
    	    // display the page.  This is initially hidden by the "Curtain" css file which was added
		    // dynamically in the af.LoadjQuery-x.x.x.js
		    $("body").css("visibility", "visible");
	    });
    })(jQuery);
