// API Doc:  http://fancybox.net/api
// Initialize FancyBox plugin

$(document).ready(function() {

	$("#fancy_login").fancybox({
		'width'				: '75%',
		'height'			: '75%',
		'autoScale'			: true,
		'padding'			: '10',
		'centerOnScroll'	: true,
		'titleShow'			: false,
		'hideOnOverlayClick': false,
		'showCloseButton'	: true,
		'enableEscapeButton': true,
		'showNavArrows'		: false,
		'overlayShow'		: true,
		'opacity'			: true,
		'overlayOpacity'	: '0.6',
		'overlayColor'		: '#000',
		'speedIn'			: 300,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});	
	
	
});


