$(function() {

   // Apply colorbox to an individual gallery page.
    $('.thumbnail-container-tiled a').colorbox({photo:true, href: function() {
       var pictureId = $('img', this).attr('id');
       // The original pictureId will be of the form "picture9338113-img".
       pictureId = pictureId.substring(7, pictureId.length-4);
       return '/picture/?pictureId='+pictureId;
    }});

});




