// JavaScript Document
function toggle_help(state){
		if(state == 1){
			$.ajax({
   type: "GET",
   url: "toggle_help.php",
   data: "toggle_id=0",
   success:function(html) {
		$("#toggle_help").toggle("medium");
   }
 });
		}else if(state == 0){
$.ajax({
   type: "GET",
   url: "toggle_help.php",
   data: "toggle_id=1",
   success:function(html) {
		$("#toggle_help").toggle("medium");
   }
 });
		}
		var klass = $('#toggle-help-button').attr("class");
		if(klass == 'toggle-help-hide'){
			$("#toggle-help-button").removeClass("toggle-help-hide");
			$("#toggle-help-button").addClass("toggle-help-show");
		}else if(klass == 'toggle-help-show'){
			$("#toggle-help-button").removeClass("toggle-help-show");
			$("#toggle-help-button").addClass("toggle-help-hide");
		}
	}
