$(document).ready(function(){
  i = 0;
  $.ajax({
    type: "GET",
	url: "flash_temadia_xml.php?params=" + td_xml_params,
	dataType: "xml",
	success: function(xml) {
      $("#temadiaswf").html("");
      total = $(xml).find("pic").length;
	  $(xml).find("pic").each(function(){
		imagen = $("imagen", this).text();
		descripcion = $("descripcion", this).text();
		enlace = $("link", this).text();
		nombre = $("nombre", this).text();
		tipo = $("tipo", this).text();
		plataforma = $("plataforma", this).text();
		milisegundos = $("milisegundos", this).text();
		i = i+1;
		$("#temadiaswf").append('<a href="http://www.meristation.com'+enlace+'" title="'+nombre+'"><img src="http://www.meristation.com'+imagen+'" alt="'+nombre+'" title="#htmlcaption'+i+'" width="350" height="250" /></a>');
		$("body").append('<div id="htmlcaption'+i+'" class="nivo-html-caption"><span class="num">'+i+'/'+total+'</span><span class="plataforma">'+plataforma+' <strong>|</strong> '+tipo+'</span><a class="nombre" href="http://www.meristation.com'+enlace+'" title="'+nombre+'">'+nombre+'</a><span class="descripcion">'+descripcion+'</span></div>');
	  });
	  $('#temadiaswf').nivoSlider({
        pauseTime:milisegundos,
        directionNav:true,
        directionNavHide:false,
        slices:5,
        boxCols: 5,
        boxRows: 2,
        effect: 'fold,boxRandom,boxRain,boxRainReverse',
        controlNav:false
      });
	}
  });
});
