// gestisco il preloading delle immagini
(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)

// apro le overlayer
function apri_overlay(page) {
  Shadowbox.open({
    content: 'infobox/'+page+'.html',
    player: 'iframe',
    height: 400,
    width: 600
  });  
}

// modulo contatti
function modulo_contatti(captcha) {
  document.write('<div id="minicontatti"><form method="post" action="contatti.html?act=invia"><input type="hidden" name="subject_id" value="0" />');
  document.write('<div class="t">Contattaci subito!</div>');  
  document.write('<span>Nome e Cognome</span>');
  document.write('<input type="text" name="nome" />');     
  document.write('<span>Azienda</span>');
  document.write('<input type="text" name="azienda" />');
  document.write('<span>Email</span>');
  document.write('<input type="text" name="email" />');  
  document.write('<span>Telefono</span>');
  document.write('<input type="text" name="telefono" />');
  document.write('<span>Le tue richieste</span>');
  document.write('<textarea name="msg"></textarea>');
  document.write('<span>Codice di sicurezza</span>');
  document.write('<div class="captcha">' + captcha + '</div>');  
  document.write('<input type="text" name="captchacode" maxlength="5" style="text-align: center"/>');
  document.write('<div class="invia"><a href="javascript:$(\'#minicontatti form\').submit()">Invia modulo!</a></div>');   
  document.write('</form></div>');
}
