															/*
 * FancyBox - jQuery Plugin
 * simple and fancy lightbox alternative
 *
 * Copyright (c) 2009 Janis Skarnelis
 * Examples and documentation at: http://fancybox.net
 * 
 * Version: 1.2.6 (16/11/2009)
 * Requires: jQuery v1.3+
 * 
 * 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() 
	{
		$("a.fancyboxStyleDefault").fancybox();

		$("a.fancyboxStyleSpecial-1").fancybox({
			'overlayOpacity'	:	0.7,
			'overlayColor'		:	'#333'
		});

		$("a.fancyboxStyleSpecial-2").fancybox({
			'zoomSpeedIn'		:	500,
			'zoomSpeedOut'		:	500,
			'overlayShow'		:	false
		});
		
		$("a.fancyboxStyleInline-1").fancybox({
			'hideOnContentClick': false,
			'frameWidth'		: 800,	 
			'frameHeight'	: 600
		});
		
		$("a.fancyboxStyleInline-2").fancybox({
			'hideOnContentClick': false,
			'frameWidth'		: 950,	 
			'frameHeight'	: 700
		});

	});
															
