				
// jQuery Statistics	
(function($){
		$(document).ready(function() {
				// if statistics button clicked
				$("#sideBarTab").click(function(event) {
						event.preventDefault();
						$("#sideBarContents").toggle("slow");
				});
    });
})(jQuery);				
