var immaginiClassifiche =new Array("/raitv/img/piu_visti_Oggi.gif",
								"/raitv/img/piu_visti_Set.gif",
								"/raitv/img/piu_visti_Mese.gif",
								"/raitv/img/piu_votati_Oggi.gif",
								"/raitv/img/piu_votati_Set.gif",
								"/raitv/img/piu_votati_Mese.gif");	
								
var immaginiClassifiche_d =new Array("/raitv/img/piu_visti_Set_d.gif",
									 "/raitv/img/piu_visti_Mese_d.gif",
									 "/raitv/img/piu_votati_Oggi_d.gif",
									 "/raitv/img/piu_votati_Set_d.gif",
									 "/raitv/img/piu_votati_Mese_d.gif",
									 "/raitv/img/piu_visti_Oggi_d.gif");
var xmlAjax = "";
var indiceClassifiche = 0;
var tools = new AjaxTools();

function readXML(ind) {
	var i = 1;
	$("#titClassifiche").attr("src", immaginiClassifiche[indiceClassifiche]);
	$("#titClassifiche_d").attr("src", immaginiClassifiche_d[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: "/mpClassificheStaticaXML.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);
}