// Blue Box Gallery -- blueboxgallery.com
// Developed by Greg Leuch <www.gleuch.com>


var Exhibition = {
  ShowPiece : function(id) {
    $('#exhibition_works_views .exhibition_work_box').hide();
    $('#exhibition_works_views #exhibition_work_'+ id).show();
    $('#exhibition_works_list .piece').removeClass('selected');
    $('#exhibition_work_list_'+ id).addClass('selected');
  },

  ShowPieceImage : function() {
    
  }
};
