// JavaScript Document

gallery = new Array();
gallery[0]="./images/gallery/foto1.jpg";
gallery[1]="./images/gallery/foto2.jpg";
gallery[2]="./images/gallery/foto3.jpg";
gallery[3]="./images/gallery/foto4.jpg";
gallery[4]="./images/gallery/foto5.jpg";
gallery[5]="./images/gallery/foto6.jpg";
gallery[6]="./images/gallery/foto7.jpg";
gallery[7]="./images/gallery/foto8.jpg";
gallery[8]="./images/gallery/foto9.jpg";
var indice = 0;


function home_fade_in(){
	$(document).ready(function(){
				$('.underLogo_home1').fadeIn(2000);
	});
}; 
function home_fade_out(){
	$(document).ready(function(){
				$('.underLogo_home1').hide();
				$('.underLogo_home2').show();
				$('.underLogo_home2').fadeOut(2000, function() {$('.underLogo_home1').fadeIn(2000, function() {home_fade_in();});});
	});
}; 


function enterpage_fadein(){
	$(document).ready(function(){
				$('#container').hide();
				$('#container').fadeIn(500);
	});
}; 
function exitpage_fadeout(targetPage){
	$(document).ready(function(){
				$('#container').fadeOut(500, function() { location.href=targetPage});
				
	});
}; 
function expand(page){
	$(document).ready(function(){
							   
		switch(page){
			case 'agriturismo':
			  $('#contenuti_corpo_corpo').hide();
			  $("#contenuti").css('padding-top', '210px');
			  $('#contenuti_corpo_corpo').show(function() { $("#contenuti_corpo_corpo").animate({height: 105}, 'slow');});
			break;
			
			case 'chisiamo':
			  $('#contenuti_corpo_corpo').hide();
			  $("#contenuti").css('padding-top', '110px');
			  $('#contenuti_corpo_corpo').show(function() { $("#contenuti_corpo_corpo").animate({height: 345}, 'slow');});
			break;
			
			case 'locale':
			  $('#contenuti_corpo_corpo').hide();
			  $("#contenuti").css('padding-top', '82px');
			  $('#contenuti_corpo_corpo').show(function() { $("#contenuti_corpo_corpo").animate({height: 265}, 'slow');});
			  $('#contenuti_corpo_r').css('background-image', 'url('+gallery[indice]+')');
			break;
			
			case 'filosofia':
			  $('#contenuti_corpo_corpo').hide();
			  $("#contenuti").css('padding-top', '160px');
			  $('#contenuti_corpo_corpo').show(function() { $("#contenuti_corpo_corpo").animate({height: 250}, 'slow');});
			break;
			
			case 'offerte':
			  $('#contenuti_corpo_corpo').hide();
			  $("#contenuti").css('padding-top', '210px');
			  $('#contenuti_corpo_corpo').show(function() { $("#contenuti_corpo_corpo").animate({height: 130}, 'slow');});
			break;
			
			case 'contatti':
			  $('#contenuti_corpo_corpo').hide();
			  $("#contenuti").css('padding-top', '210px');
			  $('#contenuti_corpo_corpo').show(function() { $("#contenuti_corpo_corpo").animate({height: 200}, 'slow');});
			break;
			
			case 'dovesiamo':
			  $('#contenuti_corpo_corpo').hide();
			  $("#contenuti").css('padding-top', '110px');
			  $('#contenuti_corpo_corpo').show(function() { $("#contenuti_corpo_corpo").animate({height: 330}, 'slow');});
			break;
			
			case 'dintorni':
			  $('#contenuti_corpo_corpo').hide();
			  $("#contenuti").css('padding-top', '90px');
			  $('#contenuti_corpo_corpo').show(function() { $("#contenuti_corpo_corpo").animate({height: 358}, 'slow');});
			break;
			
			default:
			break;
		}
		  
	});
}; 

function indietro(){
	indice--;
	if(indice<0) indice = (gallery.length)-1;
	$('#contenuti_corpo_r').css('background-image', 'url('+gallery[indice%(gallery.length)]+')');
	$('#contenuti_corpo_r').fadeIn(500); 
}

function avanti(){
	indice++;
	$('#contenuti_corpo_r').css('background-image', 'url('+gallery[indice%(gallery.length)]+')');
	$('#contenuti_corpo_r').fadeIn(500); 
}



