// EAN

function specsControl(){
	var sepcs_area = document.getElementById("product_specs");
	var specs_set = sepcs_area.childNodes;
	var nb_specs = specs_set.length;
	
	//alert(nb_specs);
	
	for(var i = 0 ; i < nb_specs; i++){
		if( sepcs_area.childNodes[i].getAttribute("id").indexOf("btn_") >= 0){
			sepcs_area.childNodes[i].onmouseover = function(){
				this.style.color = "#BE8200";
				this.style.cursor = "pointer";
			}
			
			sepcs_area.childNodes[i].onmouseout = function(){
				this.style.color = "#3D1101";
				this.style.cursor = "default";
			}
			
			sepcs_area.childNodes[i].onclick = function(){
				var section = document.getElementById("sec_"+ (this.getAttribute("id")).substring(4));
				var btn_img = this.firstChild;

				
				if(section.className != "specifications_visible"){
					section.className = "specifications_visible";
					btn_img.src = "IMAGES/btn_spec_open.jpg";
				}
				else{
					section.className = "specifications_hidden"
					btn_img.src = "IMAGES/btn_spec_closed.jpg";
				}
				//alert(section.getAttribute("id"));
			}
		}//--- end if
	}//---- end for
	
}