var jGalleryFn = {
    /* --- Fancybox --- */
    initGallery: function()
    {
        $(".justified-gallery").justifiedGallery({
            rowHeight : 280,
            fixedHeight : false,
            visibleOpacity: 1,
            margins : 10
        });

        $(".home-gallery #liveGallery").justifiedGallery({
            rowHeight : 180,
            fixedHeight : false,
            visibleOpacity: 1,
            margins : 10
        });
    }
};

$(function(){
    jGalleryFn.initGallery();
});