if(typeof($)=="function"){
	$(document).ready (init);
}
function init(){
	var tmp;
	$("#colonna_sx ul li").not(".on").find("ul").hide();
	$("#colonna_sx ul li a").click(function() {
		$(this).parent().find("ul").slideToggle("fast");									 
	});
	
	curr_url=location.href.split('/')[3];
	
	$("ul li a[@href='"+curr_url+"']").addClass("on");
	$("ul li a[@href='"+curr_url+"']").attr("title",location.href);
	$("#colonna_sx ul li a").each(function(){
			if($(this).html()=="Catalogo opere"){
				$(this).css({cursor:"default",fontWeight:"bold"});
			}
		});
}
