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

$(document).ready(function(){
    createGallery();
    if ($('.pngFix').length > 0)
    {
        $('.pngFix').pngfix();
    }
    if ($('li').length > 0)
    {
        $('li').pngfix();
    }
});

