/*
* event-handling for cost of living calculator 
*
*/



(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(
    '_themes/v2/links/b-home_f2.jpg',
    '_themes/v2/links/b-services_f2.jpg',
    '_themes/v2/links/b-apartments_f2.jpg',
    '_themes/v2/links/b-floorplans_f2.jpg',
    '_themes/v2/links/b-assistance_f2.jpg',
    '_themes/v2/links/b-activities_f2.jpg',
    '_themes/v2/links/b-dining_f2.jpg',
    '_themes/v2/links/b-news_f2.jpg',
    '_themes/v2/links/b-photos_f2.jpg',
    '_themes/v2/links/b-calendar_f2.gif',
    '_themes/v2/links/b-calculator_f2.gif',
    '_themes/v2/links/b-contact_f2.jpg',

    '_themes/v2/links/b-home.jpg',
    '_themes/v2/links/b-services.jpg',
    '_themes/v2/links/b-apartments.jpg',
    '_themes/v2/links/b-floorplans.jpg',
    '_themes/v2/links/b-assistance.jpg',
    '_themes/v2/links/b-activities.jpg',
    '_themes/v2/links/b-dining.jpg',
    '_themes/v2/links/b-news.jpg',
    '_themes/v2/links/b-photos.jpg',
    '_themes/v2/links/b-calendar.gif',
    '_themes/v2/links/b-calculator.gif',
    '_themes/v2/links/b-contact.jpg');

