/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
imgPath = new Array; 
SiClickGoTo = new Array; 
version = navigator.appVersion.substring(0,1); 
if (version >= 3){ 
    img0 = new Image; 
    img0.src = 'images/antincendio.jpg'; 
    SiClickGoTo[0] = "antincendio_fr.html"; 
    imgPath[0] = img0.src; 
    img1 = new Image; 
    img1.src = 'images/serb-vert-500-2250.jpg'; 
    SiClickGoTo[1] = "gpl_reserv_vertical_fr.html"; 
    imgPath[1] = img1.src; 
    img2 = new Image; 
    img2.src = 'images/tank_gpl.jpg'; 
    SiClickGoTo[2] = "gpl_depot_industriel_fr.html"; 
    imgPath[2] = img2.src; 
    img3 = new Image; 
    img3.src = 'images/stazione-gpl.jpg'; 
    SiClickGoTo[3] = "gpl_station_fr.html"; 
    imgPath[3] = img3.src; 
} 

var a = 0; 

function startAnim(){ 
    if (version >= 3){ 
        document.write('<A HREF="#" onclick="imgDest();return(false)"><IMG SRC="images/antincendio.jpg" BORDER=0 ALT=Menu NAME=defil></A>'); 
        defilimg() 
    }else{ 
        document.write('<A HREF="chisiamo.html"><IMG SRC="images/antincendio.jpg" BORDER=0></A>') 
    } 
} 
function imgDest(){ 
    document.location.href = SiClickGoTo[a-1]; 
} 
function defilimg(){ 
    if (a == 4){ 
        a = 0; 
    } 
    if (version >= 3){ 
        document.defil.src = imgPath[a]; 
        tempo3 = setTimeout("defilimg()",5000); 
        a++; 
    } 
} 




