function recorrido()
{
	var bg=new Element("div",{'class':'bg'});
	var popin=new Element("div",{'class':'popin'});
	popin.setStyle({top:(document.viewport.getHeight()/2+document.viewport.getScrollOffsets().top)-(popin.getHeight()/2)+"px"});
	popin.setStyle({left:(document.viewport.getWidth()/2+document.viewport.getScrollOffsets().left)-(popin.getWidth()/2)+"px"});
	bg.setStyle({height:getFullScreenSize().y+"px"});
	if(Prototype.Browser.IE)
	{
		bg.setStyle({height:getFullScreenSize().y+150+"px"});
	}
	var img=new Element("img",{src:'/images/loading.gif'});
	popin.insert(img);
	var recorrido=new Element("img",{src:'/images/template/recorrido.png'});
	//popin.update(recorrido);
	cargandoImagen(recorrido,function(imagen){
		imagen.hide();
		img.remove();		
		popin.insert(imagen);
		var w=600;
		var h=400;		
		//popin.update(recorrido);
		popin.morph('width:'+w+'px;height:'+h+'px;',{afterUpdate:function(){
			var topest=document.viewport.getScrollOffsets().top+document.viewport.getHeight()/2-popin.getHeight()/2;
			topest=topest<=30?30:topest;
			popin.setStyle({left:document.viewport.getWidth()/2-popin.getWidth()/2+"px"});
			popin.setStyle({top:topest+"px"});
		},afterFinish:function(){
			recorrido.show();
			var tache=new Element("div",{'class':'tache'}).hide();
			tache.observe("click",function(){
				new Effect.Fade(popin, {duration: .5,afterFinish: function(){
					popin.remove();
					}
				});
				new Effect.Fade(bg,{duration:.5,afterFinish:function(){
					bg.remove();
				}});
			});
			popin.insert(tache);
			new Effect.Appear(tache,{duration:.5});
		}});		
	});
	$$("body")[0].insert(bg);
	$$("body")[0].insert(popin);
}
