(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)
$(document).ready(function(){
jQuery.preLoadImages("../images/btn_freeQuoteBody_on.gif","../images/topNavLinkBackground_on.gif","../images/btn_termQuotes_on.gif)","../images/btn_incomeProtection_on.gif","../images/btn_mortgageProtection_on.gif","../images/btn_criticalIllness_on.gif","../images/btn_freeQuote_on.gif","../images/btn_emailNow_on.gif", "../images/btn_footer_life_insurance_on.jpg", "../images/btn_footer_criticalIllness_on.jpg", "../images/btn_footer_mortgage_on.jpg","../images/btn_footer_income_on.jpg");
});
