var OfferteON = Offerte;

//constants
var _OFF_CATEGORIA = 9;
var _VISIBILE = 14;
var _IDOFFERTA = 0;
var _OFF_PREZZO = 16;
var _OFF_AREATURISTICA = 12;
var _OFF_SPECIALIZZAZIONE = 10;
var _OFF_NOTTI = 13;
var _OFF_TIPO = 11;
var _OFF_LASTMINUTE = 17;


//***********
var MinPrice;
var MaxPrice;
var arrPrice;


function getOfferte(){
	OfferteON = Offerte;
	
	//Tab - Tipo Offerta
	if (filtroTipo) {
		//alert("filtro tipo: " + filtroTipo);
		//alert("arrTipo: " + arrTipo);
		if (arrTipo == 'TabPacchetti'){
		//if (arrTipo == 'TabLastMinute'){
			//alert("pacchetti");
			OfferteON = OfferteON.select(function(Off) {return Off[_OFF_TIPO] == 445});
			document.getElementById('noRec_444').style.display = 'none';
			document.getElementById('noRec_446').style.display = 'none';	
			document.getElementById('noRec_445').style.display = 'block';	 //block	
								
		}
		if (arrTipo == 'TabOfferte'){
		//if (arrTipo == 'TabPacchetti')
			//alert("offerte");
			OfferteON = OfferteON.select(function(Off) {return Off[_OFF_TIPO] == 444});
			document.getElementById('noRec_445').style.display = 'none';
			document.getElementById('noRec_446').style.display = 'none';			
			document.getElementById('noRec_444').style.display = 'block';	 //block					
		}
		if (arrTipo == 'TabLastMinute'){
		//if (arrTipo == 'TabOfferte'){
			//alert("last")
			OfferteON = OfferteON.select(function(Off) {return Off[_OFF_LASTMINUTE] == 'SI'});
			//OfferteON = OfferteON.select(function(Off) {return Off[_OFF_TIPO] == 446});
			
			document.getElementById('noRec_444').style.display = 'none';
			document.getElementById('noRec_445').style.display = 'none';				
			document.getElementById('noRec_446').style.display = 'block'; //block
			
												
		}
		
	}

	//Mappa - Area Turistica (da sidebar)
	if (filtroMap) {
		OfferteON = OfferteON.select(function(Off) {return Off[_OFF_AREATURISTICA] == arrMap});
	}

	//Categorie
	if (filtroCategorie) {
		if (arrStars.length > 1){
			OfferteON = OfferteON.select(function(Off){return (arrStars.select(function(aS) {return Off[_OFF_CATEGORIA] == aS}).length >= 1) });	
		}else{
			OfferteON = OfferteON.select(function(Off) {return Off[_OFF_CATEGORIA] == arrStars});
		}
	}
	
	//Durata (W:weekend  S:settimana  A:altro)
	if (filtroDurata) {
		if (arrDurata == 'W'){
			OfferteON = OfferteON.select(function(Off) {return Off[_OFF_NOTTI] <= 3});
		}
		if (arrDurata == 'S'){
			OfferteON = OfferteON.select(function(Off) {return Off[_OFF_NOTTI] > 3 && Off[_OFF_NOTTI] <= 7});
		}
		if (arrDurata == 'A'){
			OfferteON = OfferteON.select(function(Off) {return Off[_OFF_NOTTI] > 7});
		}
	}

	//Specializzazione
	if (filtroSpecializzazione) {
		OfferteON = OfferteON.select(function(Off) {return Off[_OFF_SPECIALIZZAZIONE] == arrSpecializzazione});
	}
	
	//Prezzo
	OfferteON = OfferteON.select(function(Off) {return Off[_OFF_PREZZO] <= arrPrice});
	

	displayOfferte('none');
	//displayOfferte('block');


} //getStruttureStars


function displayOfferte(VisAll){
	//spengo/accendo TUTTI
	for (i=0; i < Offerte.length ; i++  ){
		//alert(Offerte[i])
		Offerte[i][_VISIBILE] = false;
		$('El_'+Offerte[i][_IDOFFERTA]).style.display = VisAll;
	}

	//accendo gli ON
	
	if (OfferteON.length > 0){
		for (i=0; i < OfferteON.length ; i++  ){
			OfferteON[i][_VISIBILE] = true;
			//alert($('El_'+OfferteON[i][_IDOFFERTA]).innerHTML);
			$('El_'+OfferteON[i][_IDOFFERTA]).style.display = 'block';
		}
	}
} //displayOfferte
