var root = "/";
productsImages = null;
productsMenuImages = null;

function afficheVignette(cheminVignette,cheminMaxi)
{
	document.write('<A HREF="javascript:afficheMaxi(\''+cheminMaxi+'\')"><IMG SRC="'+cheminVignette+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="Clicca qui per ingrandire la foto"></A>');
}

function afficheMaxi(chemin)
{
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML>\n<HEAD>\n<TITLE>Image</TITLE>\n</HEAD>\n<BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>\n<CENTER><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></CENTER>\n</BODY>\n</HTML>';

	var top = (window.screen.height - i1.height) / 2;
	var left = (window.screen.width - i1.width) / 2;

	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,top=' + top + ',left=' + left);
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
}

function FillProductsImages()
{
	productsImages = new Array();
	productsMenuImages = new Array();

	//Foto Prodotti
	var img = new Image();
    img.src = root + "Images/logone.gif";
    productsImages.push(img);
		
	img = new Image();
    img.src = root + "Images/prod/foto/torta.jpg";
    productsImages.push(img);
        
    img = new Image();
    img.src = root + "Images/prod/foto/torteBasse.jpg";
    productsImages.push(img);
    
    img = new Image();
    img.src = root + "Images/prod/foto/torroneapeso.jpg";
    productsImages.push(img);
    
    img = new Image();
    img.src = root + "Images/prod/foto/torroneanumero.jpg";
    productsImages.push(img);
    
    img = new Image();
    img.src = root + "Images/prod/foto/croccanteapeso.jpg";
    productsImages.push(img);
    
    img = new Image();
    img.src = root + "Images/prod/foto/croccanteanumero.jpg";
    productsImages.push(img);
    
    img = new Image();
    img.src = root + "Images/prod/foto/leccalecca.jpg";
    productsImages.push(img);
    
    img = new Image();
    img.src = root + "Images/prod/foto/santalucia.jpg";
    productsImages.push(img);
            
	//Menu
    img = new Image();
    img.src = "Images/prod/menu/tortaSelected.jpg";
    productsMenuImages.push(img);
    
    img = new Image();
    img.src = "Images/prod/menu/torteBasseSelected.jpg";
    productsMenuImages.push(img);
    
    img = new Image();
    img.src = "Images/prod/menu/aPesoSelected.jpg";
    productsMenuImages.push(img);
    
    img = new Image();
    img.src = "Images/prod/menu/aNumeroSelected.jpg";
    productsMenuImages.push(img);
    
    img = new Image();
    img.src = "Images/prod/menu/leccaLeccaSelected.jpg";
    productsMenuImages.push(img);
    
    img = new Image();
    img.src = "Images/prod/menu/SantaLuciaSelected.jpg";
    productsMenuImages.push(img);
}

function SetLogone()
{
	if(productsImages != null && productsImages[0] != null)
		window.document.getElementById("dolce").src = productsImages[0].src;
}

function LoadProductImage(obj, index)
{
	if(productsImages != null && productsImages[index] != null)
		obj.src = productsImages[index].src;
}

function LoadProductMenuImage(obj, index)
{
	if(productsMenuImages != null && productsMenuImages[index] != null)
		obj.src = productsMenuImages[index].src;
}

