$(document).ready(function() {

var current = 0;
var next = 1;
prova();


function prova() {
setTimeout(function(){


if(current==4) {
	current++;
	next = 1;
} else if(current==5) {
	current = 1;
	next = 2;
	} else {
	current++;
	next++;
	}
	prova();

$("#gallery").removeClass("image"+current).fadeOut("slow", function () 
{
        $(this).addClass("image"+next).fadeIn("slow");
});

},8000);

}
	$('#view').html("1");
$('#thumb1').click(function(event) {
if ($('#black_layer').is(':hidden')) {
var mid = $(window).scrollTop() + Math.floor($(window).height() / 6);
$('#gallery_azienda').css('top', mid);
	$('#black_layer').show(); 
	$('#gallery_azienda').fadeIn(); 
	$('#azienda1').fadeIn(); 

	$('#container').blur();
	$('#view').html("1");
	}
});
$('#thumb2').click(function(event) {
if ($('#black_layer').is(':hidden')) {
var mid = $(window).scrollTop() + Math.floor($(window).height() /6);
$('#gallery_azienda').css('top', mid-80);
	$('#black_layer').show();
	$('#gallery_azienda').fadeIn(); 
	$('#azienda2').fadeIn();
	$('#container').blur();
	$('#view').html("1");
	}
});
$('#thumb3').click(function(event) {
if ($('#black_layer').is(':hidden')) {
var mid = $(window).scrollTop() + Math.floor($(window).height() /6);
$('#gallery_azienda').css('top', mid-40);
	$('#black_layer').show();
	$('#gallery_azienda').fadeIn(); 
	$('#azienda3').fadeIn();
	$('#container').blur();
	$('#view').html("1");
	}
});
$('#thumb4').click(function(event) {
if ($('#black_layer').is(':hidden')) {
var mid = $(window).scrollTop() + Math.floor($(window).height() /6);
$('#gallery_azienda').css('top', mid-60);
	$('#black_layer').show();
	$('#gallery_azienda').fadeIn(); 
	$('#azienda4').fadeIn();
	$('#container').blur();
		$('#view').html("1");
	}
});

 if($.browser.msie) {

$('body').click(function() {
	if($('#view').html()!="1") {
	$('#black_layer').hide();
	$('.images_azienda').hide();
		
	}
	$('#view').html("0");
	
});
}
$('#black_layer').click(function() {

	
	$('#black_layer').hide();
	$('.images_azienda').hide();
		$('#view').html("0");
	
});


});
