function createGallery()
{
    var obj = $('.iconGaleriImg');
    
    if (obj.length > 0)
    {
        obj.lightBox();
    }
}

$(document).ready(function(){
    createGallery();
});
