// JavaScript Document
$(document).ready(function() {
	$("a.fancybox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	150, 
		'speedOut'		:	250, 
		'overlayShow'	:	true,
		'titlePosition'  : 'inside'
	});
	$("a.fancyboxiframe").fancybox({
		'padding'			: 10,
		'autoScale'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe',
		'titleShow'			: false,
		'scrolling'			: 'no',
		'width'				:	565,
		'height'			:	345
	});
});
