	jQuery(document).ready(function(){
		jQuery("a.fancybox").fancybox({
			'padding': 10,
			'opacity': true,
			'speedIn': 500, 
			'speedOut': 500, 
			'changeSpeed': 300,
			'overlayShow': true,
			'overlayOpacity': 0.3,
			'transitionIn': 'elastic',
			'transitionOut': 'elastic',
			'enableEscapeButton': true,
			'showCloseButton': true,
			'showNavArrows': true,
			'hideOnOverlayClick': true,
			'hideOnContentClick': false,
			'titlePosition': 'over',
			'titleShow': true,
			'width':  560,
			'height':  340,
			'callbackOnStart': null,
			'callbackOnShow': null,
			'callbackOnClose': null,
			'centerOnScroll': true,
			'onComplete': function() {
				jQuery("#fancybox-wrap").hover(function() {
					jQuery("#fancybox-title").show();
				}, function() {
					jQuery("#fancybox-title").hide();
				});
			}
		});
	})

