$(document).ready(function(){
	
	//=============================== GALLERY PRODOTTI
	var gallery = $('#thumbs_container div');
	var gallery_length = $('#thumbs_container img').length-3;
	var offset = 0;
	
	$('#next').click(function(){
		if ((offset < gallery_length) && (!gallery.is(':animated'))) {
			gallery.stop(true).animate({left:'+=-91px'},'fast');
			offset++;
		}
	});
	
	$('#prev').click(function(){
		if ((offset > 0) && (!gallery.is(':animated'))) {
			gallery.stop(true).animate({left:'+=91px'},'fast');
			offset--;
		}
		
	});
	
	$('#preview a:first').css({zIndex:'99'});
	
	$('#thumbs_container a').click(function(){
		$('#preview a').removeAttr('style');
		var classe = $(this).attr('class');
		var img = $('#preview a.' + classe);
		$(img).css({zIndex:'99'});
	});
	
	$("#menu_principale").superfish({
		hoverClass: 'active',
		speed: 0,
		delay: 300,
		autoArrows: false,
		dropShadows: false,
		disableHI: true
	});

});

//=============================== SHADOWBOX
Shadowbox.init({
	language:   "it",
	players:    ["flv","img","wmp","swf","html","iframe"]
});