$(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');

  $('#hero').cycle({speed:1000, timeout:4000});

  $('#gallery .default ul').cycle({speed:4000, timeout:4000});

  // validation of form submissions
  $('.validate-form, .validate-form form').validate();
	
  //  ------------- 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(){}
  });

});
