// JavaScript Document'

(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() {

    /*** Preload ***/
    jQuery.preLoadImages("http://stage.invitrosciences.com/images/bg.png",
                                "http://stage.invitrosciences.com/images/dotsprites.png",
                                "http://stage.invitrosciences.com/images/green_left.png",
								"http://stage.invitrosciences.com/images/green_right.png",
								"http://stage.invitrosciences.com/images/learnmore.png",
								"http://stage.invitrosciences.com/images/learnmore_hover.png",
								"http://stage.invitrosciences.com/images/orange_left.png",
								"http://stage.invitrosciences.com/images/orange_right.png",
                                "http://stage.invitrosciences.com/images/loading.gif");


});

