
  /* Modified by Alex Spooner, 2010-01-12 10:08:57 EST */
  
  // POST JSON
  $.postJSON = function(url, data, callback) { $.post(url, data, callback, "json"); };
  
  $(document).ready(function(){

    // FANCYBOX
    $("a.fancybox").fancybox({
      'overlayShow'     : true,
      'zoomSpeedIn'     : 600,
      'zoomSpeedOut'    : 500,
      'easingIn'        : 'easeOutBack',
      'easingOut'       : 'easeInBack',
      'frameWidth'      : 500,
      'frameHeight'     : 350
    }); 

  });

