// JavaScript Document
$(document).ready(init);

function init(){


var preload = [
  '2.0/img/links/spettacoloOn.gif',
  '2.0/img/links/compagniaOn.gif',
  '2.0/img/links/attriciOn.gif',
  '2.0/img/links/associazioneOn.gif',
  '2.0/img/links/edizioniOn.gif',
  '2.0/img/links/contattaciOn.gif'
];
$(document.createElement('img')).bind('load', function(){
 if(preload[0]) this.src = preload.shift();
}).trigger('load');
	

$(".attrice").draggable();


}



function prenota(form) { 
	var nome = document.getElementById('nomePrenota').value;  
	var cognome = document.getElementById('cognomePrenota').value;  
	var email = document.getElementById('emailPrenota').value;  
	var numeroBiglietti = document.getElementById('numeroBigliettiPrenota').value;  
	var giorno = document.getElementById('giornoPrenota').value;  
	//alert(nome+' - '+email+' - '+numeroBiglietti+' - '+giorno);
	
	if(giorno=='0'){
		alert('Siamo spiacenti ma le prenotazioni per lo spettacolo del 6 e 7 maggio sono chiuse.\nPuoi comunque venire allo spettacolo e comprare i biglietti direttamente al botteghino');
		document.TT_returnValue = false;
		return;
		
	}
	if((nome=='' || nome==' ') || (cognome=='' || cognome==' ')){
		alert('Per poter completare la prenotazione e\' necessario specificare Nome e Cognome');
		document.TT_returnValue = false;
		return;
	}
	if(email.indexOf('@')<1 || email.indexOf('@')==(email.length-1)){
		alert('Per poter completare la prenotazione e\' necessario\nspecificare un indirizzo email valido');
		document.TT_returnValue =false;
		return;
	}

	if(numeroBiglietti=='0'){
		alert('Per poter completare la prenotazione e\' necessario\nspecificare il numero di biglietti desiderati');
		document.TT_returnValue = false;
		return;
	}

	if(giorno=='0'){
		alert('Per poter completare la prenotazione e\' necessario specificare il giorno');
		document.TT_returnValue = false;
		return;
	}
	
	document.TT_returnValue = true;	
} // fine metodo Js

