window.onload = function() { showPage('0') };

// Reimposta alla prima pagina
function resetPages() {
  htmllistobj = $$('#indice a');
  htmlpagobj = $$('#pagine div');
  for (i = 0; i < htmllistobj.length; i++) {
    htmllistobj[i].removeClass('active');
    htmlpagobj[i].style.display = 'none';
  }
}

// Visualizza pagina scelta
function showPage(pagenum) {
  resetPages();
  $$('#indice .'+pagenum)[0].addClass('active');
  $$('#pagine .'+pagenum)[0].style.display = 'block';
}

// Apre il filmato flash
function icoperMovie(num) {
  var moviewin = window.open("", "moviewindow", "width=640,height=485");
  moviewin.document.write('<html>');
  moviewin.document.write('<head><title>Icoper</title></head>');
  moviewin.document.write('<body style="margin: 0; background-color: #ffd300">');
  moviewin.document.write('<object type="application/x-shockwave-flash" width="640" height="480" wmode="transparent" data="../files/sistemaicoper/scopriicoper_'+num+'.swf">');
  moviewin.document.write('<param name="movie" value="../files/sistemaicoper/scopriicoper_'+num+'.swf" />');
  moviewin.document.write('<param name="wmode" value="transparent" />');
  moviewin.document.write('</object>');
  moviewin.document.write('</body>');
  moviewin.document.write('</html>');
}
