$(document).ready(function() {
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': false,
		'overlayShow'	:	true,
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	500, 
		'speedOut'		:	200,
		'titleShow' : false

	});
	
	$("a.iframe").fancybox({
		'hideOnContentClick': false,
		'overlayShow'	:	true,
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'speedIn'		:	620, 
		'speedOut'		:	345,
		'titleShow'		: false,
		'width'			: 620,
		'height'		: 345,
		'scrolling'		: 'no',
		'margin'		: 0,
		'padding'		: 0,
		'swf'			: {
			   	 'allowscriptaccess'		: 'transparent',
				'allowfullscreen'	: 'true'
			},

		'onClosed'		: function() {
			reloadMySwf();
		},
		'onComplete'	: function() {
			unloadMySwf();
		}

	});
});


