$(document).ready(function() {

  $("input[type=text],input[type=email], textarea").placehold();
  
  if($('#slideshow').length > 0) {
  
    /*
      To speed up or slow down the slideshow, adjust the "timeout" variable
      timeout is measured in milliseconds, so 2000 is 2 seconds, 500 is half a second
      For additional information on controlling the slideshow, see: http://jquery.malsup.com/cycle/lite/
    */
    $('#slideshow').cycle({ 
        timeout: 3000
    });
  }
  
  $('.content').find("a[href*='tw.acpa-cpf.org']:not(.public)").addClass('members_only')
    .attr('title','Members only content')
    .tooltip({ effect: 'fade' });
    
  if($('.video')) {
    $('.videos .video a').fancybox({
      'overlayOpacity' : .8,
      'overlayColor'   : '#000',
      'centerOnScroll' : true
    });
  }
    
});
