
$.fn.preload = function() {
    this.each(function(){
        $('<img/>')[0].src = this;
    });
}

$(["images/buy-now-button-hover.png",
   "images/buy-now-button-hover.png"]).preload();

$(document).ready(function() {   

        $("img.rollover").hover(
            function() { this.src = this.src.replace("-off","-hover"); },
            function() { this.src = this.src.replace("-hover","-off"); }
        );

  Galleria.loadTheme('js/themes/dots/galleria.dots.js');
  $('#galleria').galleria();


/*
        $('#cloud-large')
            .sprite({fps: 9, no_of_frames: 1})
            .active()
            .animate({
                top: '20px',
                left: '-250px'
            }, 70000);

        $('#cloud-small')
            .sprite({fps: 9, no_of_frames: 1})
            .active()
            .animate({
                top: '20px',
                left: '-250px'
            }, 90000);
            */

});

