$(document).ready(function() {
  /////////
  // Clear input field on focus
  $('input.clearfield').clearField();
  
  $('#imgGallery').cycle({
    fx: 'fade',
    speed:  'slow',
    timeout: 0,
    pager : '#imgGalleryNavigation div.items',
    // callback fn that creates a thumbnail to use as pager anchor
    pagerAnchorBuilder: function(idx, slide) {
      return '<img src="' + $(slide).find('img').attr("src") + '" height="50">';
    }
  });
  
});
