/*
 * Contains the functionality for jquery eyecatchers
 *
 * See http://malsup.com/jquery/cycle
 */

jQuery(document).ready(function(){

/* fx cn be any of the following:
  blindX
  blindY
  blindZ
  cover
  curtainX
  curtainY
  fade
  fadeZoom
  growX
  growY
  scrollUp
  scrollDown
  scrollLeft
  scrollRight
  scrollHorz
  scrollVert
  shuffle
  slideX
  slideY
  toss
  turnUp
  turnDown
  turnLeft
  turnRight
  uncover
  wipe
  zoom */

  $('#slideshow').cycle({
    fx:       'fade',
    speed:    4000, //transition speed
    delay:    -4000, //delay before first transition
    timeout:  4000, //time before next transition - default is 4000
    pager:      '#nav',
    pagerEvent: 'mouseover'
  });



});
