// JavaScript Document
$(document).ready(function() {
	$('a[rel=fancybox]').fancybox({
		'padding':10,
		'opacity':true,
		'cyclic':true,
		'centerOnScroll':true,
		'hideOnContentClick':true,
		'overlayOpacity':0.7,
		'overlayColor':'#000',
		'overlayShow':true,
		'titleShow':true,
		'titlePosition':'inside',
		'transitionIn':'elastic',
		'transitionOut':'fade',
		'speedIn':250,
		'speedOut':100,
		'changeSpeed':100,
		'showCloseButton':true,
		'showNavArrows':true,
		'enableEscapeButton':true,
		'type':'image'
	});
	$('a.fancybox').fancybox({
		'padding':10,
		'width':1024,
		'height':578,
		'autoScale':false,
		'opacity':true,
		'cyclic':true,
		'centerOnScroll':true,
		'hideOnContentClick':true,
		'overlayOpacity':0.7,
		'overlayColor':'#000',
		'overlayShow':true,
		'titleShow':true,
		'titlePosition':'inside',
		'transitionIn':'elastic',
		'transitionOut':'fade',
		'speedIn':250,
		'speedOut':100,
		'changeSpeed':100,
		'showCloseButton':true,
		'showNavArrows':true,
		'enableEscapeButton':true,
		'type':'iframe'
	});
});

