// Browser sniffing
$(function(){
	if ($.browser.msie && $.browser.version == '7.0') {
		$('body').addClass('ie7');
	}
})

// Smooth scroll
$(function(){
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
			&& location.hostname == this.hostname) {
			
			var $target = $(this.hash);
			$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
			
			if ($target.length) {
				var targetOffset = $target.offset().top-80;
				$('html,body').animate({scrollTop: targetOffset}, 1000);
				return false;
			}
		}
	});
});

// Carousel
$(function(){
	var imgs = $('#carousel img');
	var current = 0;
	var next = 1;
	var interval = 6000;
	
	// Mostra la prima immagine
	imgs.hide();
	imgs.eq(current).show();
	
	var timer = setInterval(function(){
		// Scambia le foto
		imgs.eq(current).fadeOut(1000);
		imgs.eq(next).fadeIn(1000);
	
		// Incrementa
		current = next;
		next = current < imgs.length-1 ? current+1 : 0;
	}, interval);
});

// Gallerie
$(function(){
	
	Shadowbox.init();

	$('#gallerie-esterni li:not([class*=more]):gt(6)').hide();
	$('#camere-fiordaliso li:not([class*=more]):gt(3)').hide();
	$('#camere-mimosa li:not([class*=more]):gt(3)').hide();

})

// Nelle vicinanze
$(function(){
	$('#nellevicinanze ul:gt(0)').hide();
	
	$('#nellevicinanze select').change(function(){
		$('#nellevicinanze ul:visible').hide();
		$('#nellevicinanze-' + $(this).val()).show();
	});
});

// Controllo del form
$(function(){
	$('form').submit(function(){
		var all = $(this).find('input, textarea').length;
		var filled = $(this).find('input[value!=""], textarea[value!=""]').length;
		if (filled < all) {
			return false;
		}
	})
})
