jQuery(document).ready(function($){
    $('.thumbnail-frame').each(function(){
        $('a',this).attr({
            'href' : $('a img',this).attr('src').replace(/thumb/i,'full'),
            'rel' : 'prettyPhoto[gallery]',
            'title' : $('.thumbnail-caption',this).text()
        });
    });
   $('a[rel^=prettyPhoto]').prettyPhoto({
    theme : 'light_square',
    showTitle : false
});
});
