/*****************************************************************************************************/
/*                                                                                                   */
/*                                     'CATEGORIES PANEL' CLASS                                      */          
/*                                                                                                   */
/*****************************************************************************************************/

function CATEGORIES_GINFO(parent){
	var JSObject = this;
	var container = "categories_container";
	
	
	/*****************************************************************************************************/
	/*                                                                                                   */
	/*                                           FUNCTION INIT                                           */          
	/*                                                                                                   */
	/*****************************************************************************************************/
	this.init = function(){
		for (var i=0; i<categoriesJSON.length; i++){
			var section = categoriesJSON[i];
			var treeBtn = document.getElementById("tree_"+i);
		
				
			//alert(subcategory.opened)
			if (section.opened == true){
				treeBtn.innerHTML = "<img src='"+LOCALPATH+"includes/images/buttons/btn_minus.gif' border='0' style='cursor:pointer'>";
				var img = treeBtn.getElementsByTagName('img')[0];
				img.status = "open";
			}
			else{
				treeBtn.innerHTML = "<img src='"+LOCALPATH+"includes/images/buttons/btn_plus.gif' border='0' style='cursor:pointer'>";
				var img = treeBtn.getElementsByTagName('img')[0];
				img.status = "close";
			}
			
			img.indexSection = section.id;
			
			//alert(img.indexSubcategory)
			img.divContainer = document.getElementById("section_container_"+i);
			img.onclick = function(){
				//alert("da");
				if (this.status == "close"){
					this.status = "open";
					//this.divContainer.style.display = "block";
					animatedcollapse.toggle(this.divContainer.id);
					this.src = LOCALPATH+"includes/images/buttons/btn_minus.gif";
					
					//alert(LOCALPATH+"setcookie_section.php?"+'section='+this.indexSection+'&'+'status='+"opened");
					www.post(LOCALPATH+"setcookie_section.php",
					 'section='+this.indexSection+'&'+
					 'status='+"opened", 
					 function(response) {
						//alert(response)
						 
					 }
					 );	
				}
				else{
					this.status = "close";
					//this.divContainer.style.display = "none";
					animatedcollapse.toggle(this.divContainer.id);
					this.src = LOCALPATH+"includes/images/buttons/btn_plus.gif";
					
					//alert(LOCALPATH+"setcookie_section.php?"+'section='+this.indexSection+'&'+'status='+"closed");
					www.post(LOCALPATH+"setcookie_section.php",
					 'section='+this.indexSection+'&'+
					 'status='+"closed", 
					 function(response) {
						//alert(response)
						 
					 }
					 );	
				}
			}
			
			
			
		}
	}
	
	
}