window.addEvent('domready', function() {
	var accordion = new Accordion('h4.atStart', 'div.atStart', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.addClass('open');
		},
 		onBackground: function(toggler, element){
			toggler.removeClass('open');
		},
		display:$("LiProdottoActive").getParent().getParent().getProperty('id').replace('Categoria','')
	}, $('navlist'));
	$$('.subnavlist .LiProdotto').each(function(element) {
		var el="";
		var myFx;
		element.addEvent('mouseenter', function(){
			var img= element.getElements('div').getProperty('class');
			var url_img= '../users/immagini/thumbs_images/it/'+img;
			el = new Element('img', {
				'src': url_img,
				'id': img,
				'class': 'frame'
			});
			el.setStyles({
			   left: this.getCoordinates().left+140,
			   top: this.getCoordinates().top-20,
			   position:'absolute',
			   'z-index':2
			});	
			myFx = new Fx.Style(el, 'opacity').set(0);
			el.injectInside($('pagina18'));
			myFx.start(0,1);
		});	
		element.addEvent('mouseleave', function(){
			el.remove();
		});	
	});
	if($('Immagine3')){
		$('Immagine3').addEvent('click', function(){
			img =this.getProperty('src').replace('../users/immagini/thumbs_images/it/','');
			img2 =$('Immagine1').getProperty('src').replace('../users/immagini/ing_images/it/','');
			this.setProperty('src','../users/immagini/thumbs_images/it/'+img2);
			$('Immagine1').setProperty('src','../users/immagini/ing_images/it/'+img);
		});
	}
});

