$(document).ready(function() {
	    maxWidth = 786;
	    minWidth = 233;	
	    
	 	$(function() 
	 	{
	 	    try
	 	    {
					$(".carousel").jCarouselLite({btnNext: ".next",btnPrev: ".prev",visible: 5});
				}
				catch(err){}
				
		});
	    
		$("#mainMenu div ul li a.openMenu").bind("mouseenter", function(){	
			$("div.sottomenu").hide();	
			$(this).parent().parent().parent().animate({width: maxWidth+"px"}, { queue:false, duration:200});			
			$(this).parent().find("div.sottomenu").show();									
		});
		 $("#mainMenu div ul li.primolivello").bind("mouseleave", function(){	
			$(this).parent().parent().animate({width: minWidth+"px"}, { queue:false, duration:200});		
		}); 	
		
		  $(function() {
		   	$('#hpGallery').cycle({ //slideshow
		    	fx:     'fade',
		        speed:  'slow',
			    timeout: 5000,
				pager: "#nav", 	
			    pause: true	,
				pagerAnchorBuilder: function(idx, slide) { 
					return '#nav a:eq(' + idx + ')'; 
					}			         
		       	});					
			 $('#pausa').click(function() {  //pausa slideshow
		     $('#hpGallery').cycle('pause'); 
		    	});	
		    });
		});	