$(document).ready(function(){
    $("td.content img[class!='noborder']").each(function(){
        $(this).css({
            'border':'1px solid gray'
        });
        href = $(this).attr('rel')?$(this).attr('rel'):$(this).attr('src');
        if ($(this).parent().attr('class') != "gallery" ){
            $(this).wrap('<a href="'+href+'" class="gallery" rel="group1" title="'+$(this).attr('alt')+'"></a>');
        }
    });

    $('a.gallery').lightBox();


});






