// JavaScript Document


$().ready(function()
{
	/*------------------------------------------------------------------------------------------------------*/
	/*	Light Box
	/*------------------------------------------------------------------------------------------------------*/
	if ($('.lightbox').length)
	{
		$('.lightbox').lightBox({ fixedNavigation:true });
		$(".lightbox").append("<span></span>");
		$(".lightbox").hover(function(){ $(this).children("span").fadeIn(600); },function(){ $(this).children("span").fadeOut(200); });
	}
	
	/*------------------------------------------------------------------------------------------------------*/
	/*	Nivo Slider
	/*------------------------------------------------------------------------------------------------------*/
	$('#widget-slider').nivoSlider({ effect: 'fade', animSpeed: 500, pauseTime: 6000, randomStart: true });
	
	/*------------------------------------------------------------------------------------------------------*/
	/*	Google Map
	/*------------------------------------------------------------------------------------------------------*/
	if ($('#widget-mappa').length){ initialize(); }
	
});
