// GLOBAL VARS
// ---------------------------------

function init_menu(){
		//menu a tendina
		$('.menu').hover(function(){
				$(this).children('.menu-but').addClass('active');
				$(this).children('.menu-sub').show();
		},function(){
				$(this).children('.menu-but').not('selected').removeClass('active');
				$(this).children('.menu-sub').hide();
		});

		//disabilita click su link
		$('#nav-collezioni .menu-but, #but-language, #nav-contatti>a').click(function(e){
				e.preventDefault();
		});
}

function init_bgstretcher(images_arr, nofade){
		//imposta bgstretcher da array
		jQuery(document).bgStretcher({
				imageContainer:		'bgstretcher',
				images: images_arr,
				imageWidth:1920,
				imageHeight:1115,
				nextSlideDelay:6500,
				slideShowSpeed:2400,
				slideShow:false
		});

		//attiva effetto fading
		if(nofade=='nofade'){
				$("#bgstretcher").css('opacity',1);
		}else{
				$("#bgstretcher").delay(600).animate({
						opacity: 1
				},600);
		}
}

// GLOBAL AUTOLOAD
// ---------------------------------
init_menu();
