$(document).ready(function(){

	/*

	 * Initiate fancybox effect for thumbnails

	 */ 

	$("a.zoom").fancybox({
		'autoScale'		:	true,
		'centerOnScroll'	:	true,
		'hideOnOverlayClick'	:	true,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'easingIn'		:	'swing',
		'easingOut'		:	'swing',
		'showCloseButton'	:	true,
		'showNavArrows'		:	true,
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity'	:	'0.8',
		'overlayColor'	:	'#EA9500',
		'titleShow'		:	true,
		'titlePosition'	: 'inside',
		'type'	:	'image'

	});
	
	$("a.iframe").fancybox({
		'hideOnOverlayClick'	:	true,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'easingIn'		:	'swing',
		'easingOut'		:	'swing',
		'showCloseButton'	:	true,
		'showNavArrows'		:	false,
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'overlayOpacity'	:	'0.8',
		'overlayColor'	:	'#EA9500',
		'titleShow'		:	false,
		'type'		: 'ajax'
	});

})
