(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)

$(document).ready(function() {
  jQuery.preLoadImages('../img/hover_glow.png', '../img/select_glow.png', '../img/home_hover_glow.png');
  $('.download h2, .buy_now h2, .live_support h2').textShadow();
  $('.download a, .buy_now a, .live_support a').mouseover(function() {
    $(this).parent().addClass('hover');
  });
  $('.download a, .buy_now a, .live_support a').mouseout(function() {
    $(this).parent().removeClass('hover');
  });
  $('#eula_chkbx').click(function(){
      if (this.checked) {
          $('#buy_now_span').hide();
          $('#buy_now_link').show().css('display', 'inline-block');
      } else {
          $('#buy_now_span').show().css('display', 'inline-block');
          $('#buy_now_link').hide();
      }
  });
  $(".screenshot a, .gallery a, .has_fancy a.fancy").fancybox({
      'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
  });
});
