var homepageImages = ['alex','chris','erika','george','jk','rob','simon','sophie','steve'];
var homepageIndex = Math.round(Math.random() * (homepageImages.length - 1));

$(document).ready(function(){
  $('a.lightbox').lightbox();
  $('a.popup').click(function(){ window.open(this.href); return false; });
});

function randomisamator()
{
  var src = '/uploads/js-' + homepageImages[homepageIndex] + '.jpg';
  img = new Image();
  img.onload = function(){
    $('#tpl-home-quote').append('<img src="' + src + '" style="z-index: 1;" />');
    if ($('#tpl-home-quote img').length > 1)
      $('#tpl-home-quote img:first').fadeOut(800, function(){ $(this).remove(); $('#tpl-home-quote img:first').css('z-index',2); });
    else
      $('#tpl-home-quote img:first').css('z-index',2);
    homepageIndex++;
    if (homepageIndex == homepageImages.length) homepageIndex = 0;
    setTimeout('randomisamator()', 8000);
  }
  img.src = src;
}


if (window.location.pathname == '/') randomisamator();