function addClickHandlers() {
						  $(".status").toggle(function(){
											  $("#page").hide();
											  $("#debug").show();}, 
											  function(){
												  $("#debug").hide();
												  $("#page").show();});						  
}


$(document).ready(function(){
				  addClickHandlers();
				  $("table").tablesorter({widgets: ['zebra']});
				  $("table").addClass("tablesorter");
				  });
