$(document).ready(function() {
    $('.colorbox').colorbox({maxWidth: '100%', maxHeight: '100%', scalePhotos: true});
    $('.colorbox.cache').each(function() {
        var im = new Image();
        im.src = this.href;//preload colorbox images
    });
});

