$(function() {
  
  $('#full-cycle').cycle();
  $('#small-cycle').cycle();
  $('#half-cycle').after('<ul id="nav">').cycle({ 
    fx:     'fade', 
    pager:  '#nav',    
    // callback fn that creates a thumbnail to use as pager anchor 
    pagerAnchorBuilder: function(idx, slide) { 
        return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>'; 
    }
});

  $('#quotes').cycle();
  
  $('#estimate a').fancybox();
  $('#estimate a').fancybox();
 
  $('#hider').click(function() {
    $('.half-slide-copy').fadeOut();
  });

  $('#shower').click(function() {
    $(this).text('Hide this text ◀').attr('id','hider');
    $('.half-slide-copy').fadeIn();
  });  
  
  
})
