function myInit() {	
	
	//$("a[href^='http:']").not("[href*='propellertraining.com']").attr('target','_blank');
	
	//$('#navigation > ul > li:last').css('border','none');
	$('#navigation > ul > li:last > a').addClass('last');
	$('#navigation ul li:has(li.selected)').addClass('selected');
	
	$('ul#productImages > li > a > img').click( function() {				
		$('ul#productImages li').removeClass('selected');
		$(this).parent().parent().addClass('selected');
		imageId = this.id;		
		imageId = imageId.replace('thumb_','');		
		loadImage(imageId);
		return false;
		});
	
	
    $('.showcase').cycle({
		fx: 'fade',
		timeout: 4000
		});

	$('.quoteSlideshow').cycle({
		fx: 'fade',
		timeout: 4000
		});
	
	

	}



(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)
