// JavaScript Document


//precarga de las imagenes de las secciones sumiller y momentos de la web del restaurante norte
function preload()
{
	//precarga imagenes sumiller
	var preloadSumiller=new Array();
	var pathS="img/fotos/sumiller/";
	var imgsS=['armario6502.jpg',
			   'nevera_pintura26502.jpg',
			   'pililicor6502.jpg',
			   'puro6502.jpg',
			   'submarino6502.jpg'
			   ];
	
	var imgS;
	
	for(imgS in imgsS)
	{
		preloadSumiller[imgS]=new Image();
		preloadSumiller[imgS].src=pathS + imgsS[imgS];
	}
	
	//precarga imagenes momentos
	var preloadMomentos=new Array();
	var pathM="img/fotos/momentos/";
	var imgsM=['carniceria.jpg',
			   'culete.jpg',
			   'dani_barra.jpg',
			   'dani_leyendo.jpg',
			   'dani_oliendo2.jpg',
			   'especias.jpg',
			   'jamones.jpg',
			   'pescaderia2.jpg',
			   'quesos.jpg',
			   'setas2.jpg',
			   'verdura.jpg'
			   ];
	
	var imgM;
	
	for(imgM in imgsM)
	{
		preloadMomentos[imgM]=new Image();
		preloadMomentos[imgM].src=pathM + imgsM[imgM];
	}
	
	/*if(screen.availHeight) 
	{
		var hght=screen.availHeight-100;
		alert(hght);	
		with(document)
		{
			
			getElementById("contenedorLogo").style.height="" + hght + "px";
			//getElementById("contenedorLema").style.height="" + height + "px";
		}
	}
*/	
	//al acabar la precarga de las imagenes hacemos visible el enlace para entrar a la pagina de inicio
	$("#lema a").fadeIn(2000);

	return;
}


