// JavaScript Document
<!--

// Banner foto
window.addEvent('domready', function(){
	var data = {
		'foto-01.jpg': { caption: 'Bed and Breakfast: il porticato in giardino' },
		'foto-11.jpg': { caption: 'Gallipoli: il porticciolo' },
		'foto-12.jpg': { caption: 'Costa ionica: veduta panoramica' },
		'foto-13.jpg': { caption: 'Costa ionica' },
		'foto-14.jpg': { caption: 'Porto Cesareo' },
		'foto-21.jpg': { caption: 'Lecce: il Vescovado' },
		'foto-22.jpg': { caption: 'Lecce: Santa Croce' }
	};
	var myShow = new Slideshow.KenBurns('show', data, { captions: false, controller: false, delay: 5000, duration: 2000, height: 260, hu: 'slide/', width: 550 });
		});
// Fine Banner foto

// Controllo inserimento dati iscrizione NewsLetter
function controll_news(theForm) {
	var errore = 0;
	document.getElementById('nome').style.borderColor="#859D31";
	document.getElementById('email').style.borderColor="#859D31";
	document.getElementById('cons').style.borderColor="#859D31";

	if(theForm.nome.value == "") {
		document.getElementById('nome').style.borderColor="#C00";
		errore = 1;
	}
	
	if(theForm.email.value == "") {
		document.getElementById('email').style.borderColor="#C00";
		errore = 1;
	}
	
	var imail=theForm.email.value;
	var poschioccia=imail.indexOf("@");
	var pospunto=imail.lastIndexOf(".");
	var len=imail.length;
	if ((poschioccia < 2)||(pospunto<poschioccia+2)||(pospunto==len-1)) {
		document.getElementById('email').style.borderColor="#C00";
		errore = 1;
	}
		
	if(document.getElementById('consenso').checked==false) {
		document.getElementById('cons').style.borderColor="#C00";
		errore = 1;
	}
	
	if(errore==1) {
		document.getElementById('invito').style.color="#C00";
		document.getElementById('invito').innerHTML='Attenzione. <br />I campi bordati di rosso risultano vuoti o errati. <br />Per favore verifica i dati inseriti.';
		return (false);
	}
	
	return (true);
}
// Fine controllo inserimento dati Commento

// Apre Informativa Privacy
function apridoc() {
	window.open ('informativa-privacy.html','Informativa','width=600,height=660,menubar=no,top=0,left=0,toolbar=no,location=no,status=no,titlebar=no,resizable=no,directories=no,scrollbars=yes');
}
// Fine Informativa Privacy

// Google Analytics
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-17329150-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
// Fine Google Analytics


