
var imgCache = [];

function preLoadImage(src)
{
  var img = document.createElement('img');
  img.src = src;
  imgCache.push(img);
}

$(document).ready(function ()
{
  $('.js-show').show();
  $('.js-hide').hide();
});

