$(document).ready(function(){
						   	function mostraImgSost1 () {
								$("#imgmenu_box>img").css("display", "none");
								$("#imgmenu1").css("display", "block");
								$("#imgmenu_box").fadeIn();
								$("#slideshow").cycle({delay:100000});
							};
							function mostraImgSost2 () {
								$("#imgmenu_box>img").css("display", "none");
								$("#imgmenu2").css("display", "block");
								$("#imgmenu_box").fadeIn();
								$("#slideshow").cycle({delay:100000});
							};
							function mostraImgSost3 () {
								$("#imgmenu_box>img").css("display", "none");
								$("#imgmenu3").css("display", "block");
								$("#imgmenu_box").fadeIn();
								$("#slideshow").cycle({delay:100000});
							};
							function mostraImgSost4 () {
								$("#imgmenu_box>img").css("display", "none");
								$("#imgmenu4").css("display", "block");
								$("#imgmenu_box").fadeIn();
								$("#slideshow").cycle({delay:100000});
							};
							function mostraImgSost5 () {
								$("#imgmenu_box>img").css("display", "none");
								$("#imgmenu5").css("display", "block");
								$("#imgmenu_box").fadeIn();
								$("#slideshow").cycle({delay:100000});
							};
							function mostraImgSost6 () {
								$("#imgmenu_box>img").css("display", "none");
								$("#imgmenu6").css("display", "block");
								$("#imgmenu_box").fadeIn();
								$("#slideshow").cycle({delay:100000});
							};
							function nascondiImgSost () {
								$("#imgmenu_box").delay(200).fadeOut('fast');
								$("#slideshow").cycle({delay:2000});
							};
							function nonFareNulla () {
							};
							$("li#c1>a").hoverIntent(mostraImgSost1, nonFareNulla);
							$("li#c2>a").hoverIntent(mostraImgSost2, nonFareNulla);
							$("li#c3>a").hoverIntent(mostraImgSost3, nonFareNulla);
							$("li#c4>a").hoverIntent(mostraImgSost4, nonFareNulla);
							$("li#c5>a").hoverIntent(mostraImgSost5, nonFareNulla);
							/*$("li#c6>a").hoverIntent(mostraImgSost6, nonFareNulla);*/
							$("ul.sf-menu").hoverIntent(nonFareNulla, nascondiImgSost);	

						   });
