(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.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)

var more = false;

jQuery(function(){

	$('#slideshow').innerfade({
		animationtype: 'fade',
		speed: 'slow',
		timeout: 5000,
		type: 'sequence',
		containerheight: '500px'
	});
	
	jQuery.preLoadImages("/images/hide.png", "/images/bg-infobar-loading.gif", "/images/loading.png", "/images/input-text-focus.png", "/images/input-footer-text-focus.png");
	
});

function addOpenSearch() {
	try {
		window.external.AddSearchProvider('http://www.trackify.info/opensearch.xml');
	}
	catch(e) {
		alert('This feature requires Firefox 2 and later or Internet Explorer 7 and later.');
	}
}
