function triggerClick(){
	$("#dim").fadeIn();
	return false;
}
// Inizio document.ready
$("document").ready ( function (){
	
	
	// GESTIONE MENU
	if(jQuery('#sezione').length!=0){
		var sez = jQuery("#sezione").text();
		jQuery("#cNav li").eq(sez).addClass('active');
		//jQuery("#cNav li#"+sez).addClass('active');
	}
	
	// GESTIONE DIV MSG
	$("#dim").css("height", $(document).height());
	$("#fuzz").css("height", $(document).height());

	$(".alertdim").click(function(){
		$("#dim").fadeIn();
		return false;
	});

	$(".closedim").click(function(){
		$("#dim").fadeOut();
		return false;
	});
	
	// GESTIONE TABELLE
	if(jQuery('.link_list').length!=0){
		$('.link_list ul:first').addClass('first');
		$('.link_list ul:odd').addClass('odd');
		$('.link_list ul:even').addClass('even');
	}
	

});


$(window).bind("resize", function(){
		 	$("#dim").css("height", $(window).height());
		 	$("#fuzz").css("height", $(window).height());
		});

// Fine document.ready

