﻿/**
 * jQuery photoGallery plugin
 * @author ser
 */


(function($) {
    $.fn.photoGallery = function(settings) {
        var obj = $(this);
        obj.find('li').each(function(index) {
            $(this).find('p').css('width', $(this).find('img').width());
        })
    };
})(jQuery);
