// FANCY.BOX

  $(document).ready(function() { 


  /* This is basic - uses default settings */ 
  $("a#single_image").fancybox();

  $("a.iframe").fancybox({ 
			'width'		       : 720,
			'height'		        : 410
  });

  /* Using custom settings */ 

  $("a#inline").fancybox({ 
    'hideOnContentClick': true 
  });

  $("a.group").fancybox({ 
    'zoomSpeedIn': 300, 
    'zoomSpeedOut': 300, 
    'overlayShow': false 
  });

  $("a#video").click(function() {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	        : 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		       : 680,
			'height'		        : 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});
  
});
