$(document).ready(function() {

  /* Apply fancybox to multiple items */
  
  $("a.fancy").fancybox({
    'transitionIn'  :  'elastic',
    'transitionOut'  :  'elastic',
    'speedIn'    :  600, 
    'speedOut'    :  200, 
    'overlayShow'  :  true,
    'overlayOpacity' : 0.6,
    'overlayColor' : '#000',
    'cyclic' : true
  });
  
});
