/**
 * Открываем/Закрываем "информационные" тексты
 */
 var  infoPages  =  new (function(){
 
	var  _this  =  this;

	/**
	 * Id-ник текущего открытого текста
	 */
	this.curId = false;
	
	this.init  =  (function(){
		$("#info-pages").ready(function(){
			$("#info-pages a").click(function(){
				if(_this.curId == this.id){
					_this.closeCurrent();
				}
				else if(_this.curId){
					_this.closeCurrent();
					_this.open(this);
				}
				else{
					_this.open(this);
				}
				return  false;
			});		
		});
	});


	/** 
	 * Закрываем текущий блок
	 *
	 */
	this.closeCurrent  =  (function(){
		$("#"+this.curId).attr('class', 'top_menu_act');
		$("#div_"+this.curId).slideUp("fast");
		this.curId  =  false;
	});
	
	
	/**
	 * Открываем текстовый блок
	 */
	this.open  =  (function(element){
		$(element).attr('class', 'right_menu_a');
		$("#div_"+element.id).slideDown("middle");
		this.curId  =  element.id;
	});
 });
 
 infoPages.init();
