$(document).ready(function() {




/* Apply fancybox to multiple items */
 
 $('a.popup').fancybox({
 'showCloseButton': true,
  'transitionIn' : 'elastic',
  'transitionOut' : 'elastic',
  'speedIn'  : 600, 
  'speedOut'  : 200, 
  'overlayShow' : true,
  'overlayOpacity': .7,
  'overlayColor': '#000',
  'autoscale': true,
  'width' : 640,
  'height' : 525
 
 });

 
});
