$(document).ready(function(){	$("#menu_container li").mouseover(function(){		$(this).css("background-color","#d6e7fb");	}).mouseout(function(){		$(this).css("background-color","");	});		$("#menu_container li").click(function(){		var title   = $(this).attr("title");		if (title=="http://www.hdvideo.it/depoli/index.php") {			window.open('http://www.hdvideo.it/depoli/index.php','webtv','');		} else if (title=="http://www.udc-italia.it/routingtessapp.aspx") {			window.open('http://www.udc-italia.it/routingtessapp.aspx','tesseramento','');		} else {			document.location.href = title;		}	});					$(".apri_e_chiudi_il_successivo").next().hide();		$(".apri_e_chiudi_il_successivo").click(function(){			$(".apri_e_chiudi_il_successivo").next().slideUp('fast');		$(this).next().slideToggle('fast');		});			$(".apri_chiudi_downloads").next().hide();		$(".apri_chiudi_downloads").click(function(){			$(this).next().slideToggle('fast');			});				/*$("ul.giornalini2 li").hover(			function() {					$(this).css({'z-index' : '10'});			$(this).find('img').addClass("hover").stop()				.animate({					top: '-20',					left: '-30',					width: '200px',					height: '283px'				}, 200);		},		function() {					$(this).css({'z-index' : '0'});			$(this).find('img').removeClass("hover").stop() 				.animate({					top: '0',					left: '0',					width: '140px', 					height: '198px'				}, 400);					}			);*/		$("ul.zoomable li").mouseover(function(){			img_width = $(this).find('img').attr('width');		img_height = $(this).find('img').attr('height');		zoom = 1.5;			if ($(this).find('img').data('default_width')==null) {			$(this).find('img').data('default_width',img_width);		}		if ($(this).find('img').data('default_height')==null) {			$(this).find('img').data('default_height',img_height);		}				default_width = $(this).find('img').data('default_width');		default_height = $(this).find('img').data('default_height');			$(this).css({'z-index' : '10'}); 			$(this).find('img').addClass("hover").stop()				.animate({					top: (default_width-(default_width*zoom))/2,					left: (default_height-(default_height*zoom))/2,					width: default_width * zoom,					height: default_height * zoom				}, 200);	      }).mouseout(function(){				$(this).css({'z-index' : '0'});			$(this).find('img').removeClass("hover").stop()				.animate({					top: '0',					left: '0',					width: default_width,					height: default_height				}, 400);	      });			//alzo il div index-02_ se la parte degli appuntamenti arriva troppo gił	/*var altezza_div_testo_pagina = $("#testo-pagina").height();	$("#menu").css("height",altezza_div_testo_pagina + 10 + 20 + 4 + 22 + 22);*/});
