    $(document).ready(function() {
							   
        
		dropdown('#menu-primo-livello ul');

		if ( $(".slider-gallery").length > 0 )
        {
            $(".slider-gallery").each(function() {
                var $this = $(this);

                $this.carouFredSel({
                    items: {
                        visible: 4
                    },
                    auto: 6000,
                    prev: $this.parents('.blocco_gallery:first').find('.prev_gallery'),
                    next: $this.parents('.blocco_gallery:first').find('.next_gallery')
                });
            });
        }
		
		
		//$("#marchi ul").carouFredSel({
//			items: 1,
//			scroll: {duration:700},
//			direction: "up"
//		});
		
		$("#slider ul").cycle({
            fx: 'fade',
			timeout: 4000,
            speed: 2000
        });
        
      	$('a[rel=external]').click(function() {
            window.open($(this).attr('href'));
            
            return false;
        });
		
		$(".open-box").each(function(i){
		
			$(this).click(function() {
			
				if( $('.accesso').hasClass('opened') ) {
			   
				   	$('.accesso').fadeOut('slow');
			   
				} else {
				
					$('.accesso').fadeIn('slow');
					$("#bn-close-l").click();					   
				}
				return false;
				
			});
				  
		});
		
		$("#bn-close").click(function() {
		
			$('.accesso').fadeOut('slow');
			return false;
		
		});	
		
    });
	
