
(function($){

    var imagebox = $.fn.imagebox = function(op) {

        $(this).each(function(){
            var img = $(this).children('img');
            var title = img.attr('alt');
            $(this).attr({
                'rel': 'lightbox',
                'title': title
            });
            img.after("<span class='imagetitle'>"+title+"</span>");
        });

    };

})(jQuery); 
