/* Author: Brendan Underwood

*/

$(document).ready(function(){

  // add first and last classes to all lists, table rows, table heads and table cells in the DOM
  $('ul li:first-child,table tr:first-child,tr td:first-child, tr th:first-child').addClass('first');
  $('ul li:last-child,table tr:last-child,tr td:last-child, tr th:last-child').addClass('last');

  //  ------------- prettyphoto gallery init ---------------- //

  $(".image-gallery a[rel^='prettyPhoto'], .fullwidthimage a[rel^='prettyPhoto']").prettyPhoto({
      animation_speed: 'normal', /* fast/slow/normal */
      show_title: false, /* true/false */
      allow_resize: true, /* true/false */
      overlay_gallery: false,
      counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
      callback: function(){}
  });


});
