/**
 * @author yaap
 */
function help(){

	
	this.over = function(id){		
		if ($("help_img_" + id).className != "help_img_selected") {
			$("help_img_" + id).className = "help_img_over";
		}
	};
	this.out = function(id){	
		if ($("help_img_" + id).className != "help_img_selected") {
			$("help_img_" + id).className = "help_img";
		}
	};
	
	this.select = function (id) {
		if ($("help_img_" + id).className == "help_img_selected") {
			return false;
		}
		
		for (i=1;i<=9;i++) {
			if ($("help_img_" + i)) {
				$("help_img_" + i).className = "help_img";
			}
		}
				
		$("help_img_"+id).className="help_img_selected";
		
				
			if ($("help_div")) {
				var params="go=help&in=getSection&type="+id;
				try {
				var myAjax = new Ajax.Request( 'index.php', {
					method: 'post',
					parameters: params,
					encoding : "CP1251",

					/*postBody: "go=help&in=getSection&type=" + id ,*/
					onComplete: function(originalRequest){
						//alert('a');
						var text = originalRequest.responseText;
						//alert(text['responce']);
						
						$("help_div").hide();
						$('help_div').innerHTML=text;
						new Effect.Appear("help_div");
						
					}
					});
			} catch(e) {
			   alert('problem with Ajax request');
			}	
			
		}
		
		return true;
		
	};
	
}

help=new help();

