$(document).ready(function()
  {
	$('#ilogo').hide('fast');
	$('#ifaxiflora').hide('fast');
	$('#iconfesercenti').hide('fast');
	
   var so = new SWFObject("/common/slideshow/swf/galleria.swf", "SOSlideshow", "415", "500", "7", "#ffffff");
   so.addVariable("showLogo", "false");
   so.addParam("wmode", "transparent");
   so.write("content");
   
   setTimeout("$('#ilogo').fadeIn('slow')",4000);
   setTimeout("$('#ifaxiflora').fadeIn('slow')",6000);
   setTimeout("$('#iconfesercenti').fadeIn('slow')",7000);
   
  })

 $(document).ready(
				function(){
					$('#news').innerfade({
						animationtype: 'slide',
						speed: 'slow',
						timeout: 8000,
						type: 'random',
						containerheight: '1em'
					});
			});	

$(function() {
		// set opacity to nill on page load
		$("ul#top_menu span").css("opacity","0");
		// on mouse over
		$("ul#top_menu span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
	});
$(function() {
		// set opacity to nill on page load
		$("ul#bott_menu span").css("opacity","0");
		// on mouse over
		$("ul#bott_menu span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0
			}, "slow");
		});
	});