// JavaScript Document

function controllist(n,t,I,U,O){
	$("#"+n).children(t).each(function(){
		if ($(this).attr("id")!=''){
			if ($(this).attr("id")==I){
				if ($('#img_src_'+I)){
					if ($('#img_'+I).attr("src") != $('#img_src_'+I).html){
						$('#img_'+I).attr({"src":$('#img_src_'+I).html()});
					}
				}
				$(this).removeClass().addClass(U);
			}
			else{ $(this).removeClass().addClass(O); }
		}
	});
}

var Gal=0;

function MngList(cont,tag,objid,bbox,btext){
	$('#'+cont).children('div').removeClass(bbox+'open').addClass(bbox);
	$('#'+cont).children('div').children('.'+btext+'open').removeClass(btext+'open').addClass(btext);
	$('#'+cont).children('div').children('.newer').each(function(){$(this).css({display:'none'});});
	if ($('#'+objid).children('.img2load')){
		if ($('#'+objid).children('.img2load').text() != ''){
			$('#'+objid).css({'background':'url('+$('#'+objid).children('.img2load').text()+')'});
			$('#'+objid).children('.img2load').remove();
		}
	}
	$('#'+objid).removeClass(bbox).addClass(bbox+'open');
	$('#'+objid).children('.newer').css({display:''});
	$('#'+objid).children('.'+btext).removeClass(btext).addClass(btext+'open');
}

var hightlight = function(){
	$('.newerimg').each(function(){ ($(this).attr('src') == '/images/site_tmp/upd_recent.png') ? $(this).attr({src:'/images/site_tmp/px.gif'}) : $(this).attr({src:'/images/site_tmp/upd_recent.png'})});
};

var hightlightsmall = function(){
	$('.newerimg').each(function(){ ($(this).attr('src') == '/images/site_tmp/upd_recent_small.png') ? $(this).attr({src:'/images/site_tmp/px.gif'}) : $(this).attr({src:'/images/site_tmp/upd_recent_small.png'})});
};

function controlmenu(id,node_sel){
	$('#menu_bar').children('li').children('a').children('img').each(function(){if (($(this).attr('alt') != 'Separator') && ($(this).attr('id') != node_sel)){($(this).attr('id') == 'img_'+id) ? $(this).attr({'src':'/images/site_tmp/menu/mid_'+$(this).attr('id').replace(/img_/gi,'')+'_on.gif'}) : $(this).attr({'src':'/images/site_tmp/menu/mid_'+$(this).attr('id').replace(/img_/gi,'')+'_off.gif'})}});
}

function DoSearchBox(){
	if ($('#search_txt').val() == ''){
		alert('Specificare un testo per la ricerca');
		return false;
	}
	if ($('#zone').val() == ''){
		alert('Specificare l\'area per la ricerca');
		return false;
	}
	location.href='/cerca/cerca.php?m_id=8&top=8&search_txt='+$('#search_txt').val()+'&zone='+$('#zone').val();
}

function DoSearch(){
	if ($('#search_txt').val() == ''){
		alert('Specificare un testo per la ricerca');
		return false;
	}
	if ($('#zone').val() == ''){
		alert('Specificare l\'area per la ricerca');
		return false;
	}
	inviaPostScroller('/ajaxreturn/src_list.php','m_id=8&top=8&search_txt='+$('#search_txt').val()+'&zone='+$('#zone').val(),'search_result','','search_list');
}