$(document).ready(function() {

	$("a#single_1").fancybox();
		
	$("a#fb").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,
		'overlayOpacity'		: 0.9
	});
	
	$("a#single_3").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'overlayOpacity'		: 0.9,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
	
	$("a.fancybox").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500,		
		'overlayOpacity'		: 0.9,
		'hideOnContentClick': false
	});
	

   $("a.iframe").fancybox({
      // avoid closing fancybox with clickable content
      'hideOnContentClick': false,
      // set the fancybox size
	  'overlayOpacity': 0.9, 
      'frameWidth':999,
      'frameHeight':760
	  
      });



   //Activate VideoFancyBox
   $("a.video").fancybox({
      // avoid closing fancybox with clickable content
      'hideOnContentClick': false,
	  'overlayOpacity': 0.9, 
      // set the fancybox size
      'frameWidth':930,
      'frameHeight':594,
      // avoid video keep playing after
      // fancybox is closed in IE
      'callbackOnClose': function() {
         $("#fancy_content").empty();}
      }); 





});

