$(document).ready(function() {
						   
	var config = {
		sensitivity: 5, // number = sensitivity threshold (must be 1 or higher)
		interval: 50, // number = milliseconds for onMouseOver polling interval
		over: apriTendina, // function = onMouseOver callback (REQUIRED)
		timeout: 50, // number = milliseconds delay before onMouseOut
		out: chiudiTendina // function = onMouseOut callback (REQUIRED)
	};
	
	$('li.tendina').hoverIntent(config);
	
	function apriTendina() {
		$(this).children('a.submenu').removeClass('submenu');
		$(this).children('li.tendina ul').fadeIn(50);
	}
	function chiudiTendina() {
		$(this).children('li.tendina ul').fadeOut(50);
		$(this).children('a').addClass('submenu');
	}
	
	$('#mnu_seleziona_lingua a#selezione').click(function(event) {
		event.preventDefault();
		var sl = $('#selezione_lingue');
		if (sl.css('display')=='none') {
			sl.show();
			$('li#mnu_seleziona_lingua a#selezione').css('background','transparent url(../images/freccina_su_grigia.gif) no-repeat right 1px').css('color','#656565');
		} else {
			sl.hide();
			$('li#mnu_seleziona_lingua a#selezione').css('background','transparent url(../images/freccina_giu_grigia.gif) no-repeat right 1px').css('color','#FFF');
		}
	})
	
	$('#slideit').cycle({
		fx:     'scrollLeft',					//Transition effect
		timeout: 3000,					//Time between transitions in milliseconds
		pager:  '.slideshow-nav-inner',	//Element where navigation will be inserted
		pagerAnchorBuilder: paginate,	//function used for navigation (do not change)
		speed:  '500',					//Duration of transition in milliseconds
		pause:	1,						//Pause on hover (true)
		easing: 'easeInOutQuint'		//Easing capability (do not change)
	});	
	
	function paginate(idx, slide) {
		return "<\a href='' title='' class='ie6'><\img src='/images/transparent.png' alt='' class='ie6' /><\/a>";
	} 	
});
