$(document).ready(function(){
	selectProvincie ()
	cycleActivate()
	hoverAltriProdotti()
	
});

$(window).load(function(){
		$('body').css('background-image','url(templates/public/gsc/images/background.png)');
		frecce()
});



function cycleActivate() {

 $('#slider').cycle({ 
    fx:    'cover', 
    speed:  2900 
 }); 
 
 $('#fader').cycle({ 
    speed:  2900 
 });
 
 $('#slider-home').cycle({ 
    speed:  2900 
 });
 
}

function selectProvincie(){
	$("#provincie").change(function () {
		if ($("#provincie option:selected").val() == 0) {
			$(".provincia").fadeOut(200, function() {$(".mappa").show();});
			}
		else {
		  $(".mappa").css('display','none');
          selectedId = '#' + $("#provincie option:selected").val();
		  $(".provincia").fadeOut(200);
		  $(selectedId).stop(true,false).delay(200).fadeIn(200);
		}
	})		
}

function hoverAltriProdotti(){

	$(".altri-prodotti-box").append("<a href='' class='black-box abs transp-20 no-disp' target='_blank'></a>");

	$(".altri-prodotti-box .black-box").each(function(){
		$(this).attr('href', $(this).parent().find('a:first').attr('href'));
	});

	
	$(".altri-prodotti-box").mouseenter(function(){
		$(this).find('.black-box').stop(false,true).show();
		$(this).mouseleave(function(){
            $(this).find('.black-box').stop(false,true).hide();
        });
	})
}

function frecceIn(){
$('.freccia').fadeIn('3000', function(){
	frecceOut();
	})

}

function frecceOut(){
	$('.freccia').fadeOut('3000', function(){
	frecceIn();
	})
}

function frecce(){
frecceOut();
}
