// JavaScript Document
(function() {
  var imgs = [ "olga_kuczer_logo.png", "light_off.png", "light_on.png" ],
    index = 0,
    img;

  (function() {
    if (index >= imgs.length) return;
    (img = new Image()).onload = arguments.callee;
    setTimeout(function() { img.src = "images/" + imgs[index++]; }, 1);
  })();
 })();
