// JavaScript Document
var Servizi_class = function(){
	var S = {
		showComuni: function(show,type){
			var o = type=="servizi" ? $('comuniList_servizi') : $('comuniList');
			var sa = type=="servizi" ? $('comuniList_showall_servizi') : $('comuniList_showall');
			var ha = type=="servizi" ? $('comuniList_hiddenall_servizi') : $('comuniList_hiddenall');

			var Hmin=25;
			if(show){
				o.NS_openLayerVars=null;//resetta la variabile
				var h_tmp = type=="servizi" ? this.height_comuni_servizi : this.height_comuni;
				NS_openLayer(o,"auto","auto",Hmin,h_tmp,false);
				sa.style.display = "none";
				ha.style.display = "block";
			}else{
				if(this.height_comuni==null){
					if(type=="servizi"){
						this.height_comuni_servizi = o.offsetHeight;
					}else{
						this.height_comuni = o.offsetHeight;
					}
				}
				var h_tmp = type=="servizi" ? this.height_comuni_servizi : this.height_comuni;
				
				o.style.overflow="hidden";
				NS_openLayer(o,"auto","auto",h_tmp,Hmin,false);
				sa.style.display = "block";
				ha.style.display = "none";
			}
		}
	};
	return S;
};
