/*
 * FancyBox - jQuery Plugin
 * simple and fancy lightbox alternative
 *
 * Copyright (c) 2009 Janis Skarnelis
 * Examples and documentation at: http://fancybox.net
 * 
 * Version: 1.2.4 (02/11/2009)
 * Requires: jQuery v1.3+
 * 			 jquery.fancybox-1.2.4.pack.js
 * 
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
 
$(document).ready(function() {
	$(".fancy").fancybox({
		'zoomSpeedIn'		:	300,
		'zoomSpeedOut'		:	300,
		'zoomOpacity'		:	true,
		'overlayShow'		:	true,
		'overlayOpacity'	:	0.6,
		'overlayColor'		:	'#333',
		'centerOnScroll'	:	false,
		'itemArray'			:	true,
		'frameWidth'		: 	800,
		'frameHeight'		: 	400,
		'hideOnContentClick':	true,
		'enableEscapeButton':	true,
		'showCloseButton'	:	true,
		'centerOnScroll'	:	false,
		'padding'			:	2,
		'imageScale'		:	true
	});
});


