/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * 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#inline").fancybox({
		'hideOnContentClick': true,
		'autoDimensions'	: false,
		'width'         	: 500,
		'height'        	: 'auto'
	});
		$(".fancy").fancybox({
		'titlePosition'	: 'inside'
		});
	});

