(function($) {
    $.fn.prui_photo_title = function(data) {
        var dur = 100;
        
        data = jQuery.extend({
            hide_title: false
        }, data);
        
        $(this).addClass('photo-with-title');
        
        if ($('.photo-title', this).length == 0) {
            $('<div></div>')
                .addClass('photo-title')
                .appendTo(this);
        }
        
        if (data.hide_title) {
            $('.photo-title', this).hide();
        }
        
        $(this).hover(function() {
            if (data.hide_title) {
                $('.photo-title', this).fadeIn(dur);
            } else {
                $('.photo-title', this).fadeOut(dur);
            }
        }, function() {
            if (!data.hide_title) {
                $('.photo-title', this).fadeIn(dur);
            } else {
                $('.photo-title', this).fadeOut(dur);
            }
        });
    };
})(jQuery);
