

$(document).ready(function(){

(function($) {
  var cache = [];
  $.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)
jQuery.preLoadImages('http://s3.amazonaws.com/elgatoweb/1112INT/homepage/nav_over.gif');

$('#slideshow').cycle({
fx: 'scrollHorz', speed: 500, timeout:  5000, pager: '#slsh_a', pagerAnchorBuilder: function(index, el) { 
        return '<a href="#"><img src="http://s3.amazonaws.com/elgatoweb/1112INT/homepage/nav_button.gif" width="12" height="12" border="0" /></a>'; 
    }
});


$('#slsh_a').not('.stopped').find('a').click(function(){
$('#slideshow').cycle('pause');
$('#slsh_a a').addClass('stopped');
return false;
});


});

   

 
