var immaginiClassifiche_0 =new Array("/dl/raitv/img/visti_oggi_b.gif",
								"/dl/raitv/img/visti_settimana_b.gif",
								"/dl/raitv/img/visti_mese_b.gif",
								"/dl/raitv/img/votati_oggi_b.gif",
								"/dl/raitv/img/votati_settimana_b.gif",
								"/dl/raitv/img/votati_mese_b.gif");	
								
var immaginiClassifiche_1 =new Array("/dl/raitv/img/visti_settimana.gif",
									 "/dl/raitv/img/visti_mese.gif",
									 "/dl/raitv/img/votati_oggi.gif",
									 "/dl/raitv/img/votati_settimana.gif",
									 "/dl/raitv/img/votati_mese.gif",
									 "/dl/raitv/img/visti_oggi.gif");

var immaginiClassifiche_2 =new Array("/dl/raitv/img/visti_mese.gif",
									 "/dl/raitv/img/votati_oggi.gif",
									 "/dl/raitv/img/votati_settimana.gif",
									 "/dl/raitv/img/votati_mese.gif",
									 "/dl/raitv/img/visti_oggi.gif",
									 "/dl/raitv/img/visti_settimana.gif");
									 
var immaginiClassifiche_3 =new Array("/dl/raitv/img/votati_oggi.gif",
									 "/dl/raitv/img/votati_settimana.gif",
									 "/dl/raitv/img/votati_mese.gif",
									 "/dl/raitv/img/visti_oggi.gif",
									 "/dl/raitv/img/visti_settimana.gif",
									 "/dl/raitv/img/visti_mese.gif");
									 
var xmlAjax = "";
var indiceClassifiche = 0;
var tools = new AjaxTools();

function readXML(ind) {
	var i = 1;
	$("#titClassifiche").attr("src", immaginiClassifiche_0[indiceClassifiche]);
	$("#titClassifiche_1").attr("src", immaginiClassifiche_1[indiceClassifiche]);
	$("#titClassifiche_2").attr("src", immaginiClassifiche_2[indiceClassifiche]);
	$("#titClassifiche_3").attr("src", immaginiClassifiche_3[indiceClassifiche]);
	
	$(".contentBox div").html("");
	$(xmlAjax).find('classifica').each(function(){
		if ($(this).attr('tipo_stat') == indiceClassifiche) {
			$(this).find('item').each(function(){
				var id = "#elenco"+i;
				var html = '<a href="'+$(this).find('link').text()+'" target="_top" >'+$(this).find('titolo').text()+'</a>';
				$(id).html(html+"<br>");
				i++;
			})	
		}
	});
}

function readClassifica() {
	$.ajax({
		 type: "GET",
		 url: "/dl/raitv/xmlstatici/mpclassifiche.xml",
		 dataType: "html",
		 success: function(html) {
			html = html.replace(/\r\n+/,'');
			xmlAjax = tools.CreateXmlDocumentFromContent(html);
			readXML(indiceClassifiche);
		 }
	}); 
}


function shiftClassificaUp() {
	if(indiceClassifiche < 5) 
		indiceClassifiche++;
	else
		indiceClassifiche = 0;
	
	readXML(indiceClassifiche);
}

function shiftClassificaDown() {
	if(indiceClassifiche!=0) 
		indiceClassifiche--;
	else
		indiceClassifiche = 5;
	
	readXML(indiceClassifiche);
}

