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

jQuery.preLoadImages("logo_home.png", "images/logo_home.png");
jQuery.preLoadImages("Harbor2.png", "images/Harbor2.png");


$(document).ready(function() {
	$("#linkbar table").dropShadow({right: 1, bottom: 1, opacity: 0.8, color: "#67a5b0", blur: 4});
	$("#mainLogo").dropShadow({right: 12, bottom: 16, opacity: 0.8, color: "#000000", blur: 4});
});


