$(function() {
		voci=new Array();
		$('.descrizionelink').each(function() {
			voci[$(this).attr('rel')]=false;
		});
		
		/* simulo l'accordion */
		$('.linkfoto').hover(function() {
			figlio=$(this).children(".descrizionelink");
			rel=figlio.attr('rel');

			//$('.news').prepend('over '+rel+'<br/>');			
			if (voci[rel]==false) {
				voci[rel]=true;
				figlio.slideDown("normal",function() {
					//$('.news').prepend('fine anim over'+rel+'<br/>');
					voci[rel]=false;
				});
			}
			
		}, function() {			
			figlio=$(this).children(".descrizionelink");
			rel=figlio.attr('rel');
			
			//$('.news').prepend('out '+rel+'<br/>');
			if (voci[rel]==false) {
				voci[rel]=true;
				figlio.slideUp("normal", function() {
					//$('.news').prepend('fine anim out'+rel+'<br/>');
					voci[rel]=false;
				});
			}
			
		});
	});
