$(document).ready(function()
{	
	$('.book-link').fancybox({
		'hideOnContentClick'	: false,
		'showCloseButton'       : false,
		'autoDimensions'		: true,
		'width'					: 750,
		'height'				: 625,
		'scrolling'				: 'no',
		'type'					: 'iframe',
		'titlePosition' 		: 'inside',
		'titleFormat'			: formatTitle
	});
	
	$("a#fancy-form").click(function() 
	{	
		$.fancybox({
			'hideOnContentClick': false,
			'hideOnOverlayClick': false,
			'autoDimensions'	: false,
			'showCloseButton'   : false,
			'enableEscapeButton': false,
			'scrolling'			: 'no',
			'centerOnScroll'	: false,
			'width'				: 360,
			'height'			: 'auto',
			'href'				: 'templates/pages/book/form/index.php',
			'titlePosition' 	: 'inside',
			'showNavArrows'		: false,
			'titleFormat'		: formatTitle
		});
		
		return false;
	});
	
});

function formatTitle( title, currentArray, currentIndex, currentOpts ) {
    return '<div id="closeBox"><a href="javascript:;" onclick="$.fancybox.close();"><img src="images/close.gif" /></a></div>';
}
