(function($){
  $(document).ready(function() {

    if ($('#callout-cycles').get(0)) {
      $('#page-loading').fadeOut('fast').remove();
      $('.main-stage').animate({opacity:1},'fast');
      /* homepage cycler */
      $('#callout-cycles').cycle({
	      timeout:5000, // time between cycles
	      speed:1500, // transition speed
	      pager:'#cycle-nav'
      });
    }  
    
    
  });
  
})(jQuery);

