/*
 * site.js
 *
 * Includes jQuery onReady call, plus pre-defined functions for re-use
 */

$(document).ready(function(){

  $(".video-popup").fancybox({
    'titleShow'		: false,
    'transitionIn'	: 'elastic',
    'transitionOut'	: 'elastic'
  });

  // randomize the sidebar snippets
  $('#testimonial-cycle').cycle({
    fx: 'fade',
    speed: 500,
    timeout: 6000, 
    random: 1
  });
  
});
