/*
 *   Copyright 2010 Rosemary Reilman
*/

$(document).ready(function(){

    $('div.gallery', '#rightmiddle').each(function() {
      var self = $(this);

        self.jflickrfeed({
            feedapi: 'photoset.gne',
            qstrings: {
                set: self.attr('rel'),
                nsid: '69924048@N00'
            },
            itemTemplate: '<a href="{{image}}" title="{{title}}" class="thumbnail" style="display:none"><img src="{{image_s}}" alt="{{title}}" border="0" width="50" height="50" /></a>',
            itemCallback: flickerGallery
        });
    });

});


