$(document).ready(function() {

  // clear floats on block element
  $('.clearfix').append('<div class="clearall"><!-- clear floats --></div>')

  // 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');

  $('#showcaseslides').cycle({fx: 'fade', speed:1500, timeout:5500});

  $("a[rel^='prettyPhoto']").prettyPhoto({
      animationSpeed: 'normal', /* fast/slow/normal */
      padding: 40, /* padding for each side of the picture */
      opacity: 0.35, /* Value betwee 0 and 1 */
      showTitle: true, /* true/false */
      allowresize: true, /* true/false */
      counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
      theme: 'light_rounded', /* light_rounded / dark_rounded / light_square / dark_square */
      callback: function(){}
  });

});
