
var mainokset=new Array(
        new Array(
            "UNISUN - Terveystyyny",
            "images/tuotteet/m_tyyny.jpg",
            "tuotteet.html"
        ),
        new Array(
            "UNISUN - Asentotuet",
            "images/tuotteet/asentotuki.jpg",
            "tuotteet.html"
         ),
        new Array(
            "UNISUN - Matkailumaailman patjat",
            "images/tuotteet/matkailumaailmapatjat2.png",
            "tuotteet.html"
        ),
        new Array(
            "UNISUN - Patjat",
            "images/tuotteet/patja.jpg",
            "tuotteet.html"
        ),
        new Array(
            "UNISUN - Patjat",
            "images/tuotteet/peruspatja.gif",
            "tuotteet.html"
        ),
        new Array(
            "UNISUN - Patjat",
            "images/tuotteet/yhdistelmapatja.jpg",
            "tuotteet.html"
        ),
        new Array(
            "ISO-ION - Ilmanpuhdistin",
            "images/tuotteet/m_ilmanpuhdistin.jpg",
            "tuotteet.html"
        ),
        new Array(
            "UNISUN - Hetula terveystyyny",
            "images/tuotteet/hetula.jpg",
            "tuotteet.html"
        ),
        new Array(
            "EUROSUN - Hoitovoiteet",
            "images/tuotteet/hoitovoiteet.jpg",
            "tuotteet.html"
        ),
        new Array(
            "UNISUN - Istuinalusta",
            "images/tuotteet/istuinalusta.jpg",
            "tuotteet.html"
        )        
    );
    
    var mainos_nyt=0;
    
    // vaihtaa näytettävän mainoksen    
    function vaihda_mainos() {
      
        // piilotetaan edellinen
        if(mainos_nyt)  
            document.getElementById("mainos_"+mainos_nyt).style.display="none";
            
        // arvotaan uusi siten, ettei vanha tule toiseen kertaan    
        n=Math.round(Math.random()*(mainokset.length-2))+1;
        if(n>=mainos_nyt) n++;
        mainos_nyt=n;
            
        // näytetään uusi mainos
        document.getElementById("mainos_"+mainos_nyt).style.display="block";        
    }
    
    
    function init() {
    
        for (i=0;i<mainokset.length;i++) {
            document.writeln("<div id=\"mainos_"+(i+1)+"\" style=\"display: none;\">");
            document.writeln("  <center><img src=\""+mainokset[i][1]+"\" style=\"border:2px solid #b2996d\" alt=\""+mainokset[i][0]+"\"><br>");
            document.writeln("</center></div>");                
        }

        setInterval("vaihda_mainos()",10000);
	    
        vaihda_mainos();
    }
    
init();
