$.fn.fancyConfig = function() {

	var modalOptions = {
		'type': 'image',
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300, 
		'overlayShow': true,
		'overlayColor': '#000',
		'overlayOpacity': .9,
		'centerOnScroll': true,
		'zoomOpacity': true,
		'easingIn': "easeOutBack",
		'easingOut': "easeInBack",
		'easingChange': "easeInOutQuart",
		'showCloseButton': true,
		'showNavArrows': true,
		'hideOnContentClick': true,
		'hideOnOverlayClick': true,
		'cyclic': true,
		'autoScale': true,
		'titlePosition': 'over',
		'transitionIn': 'elastic',
		'transitionOut': 'elastic',
		'padding': 2,
		'onComplete': function() {
			$("#fancybox-wrap").hover(function() {
				$("#fancybox-title").show();
			}, function() {
				$("#fancybox-title").hide();
			});
		}
	}

	var modalAjaxOptions = {
		'zoomSpeedIn': 300, 
		'zoomSpeedOut': 300, 
		'overlayShow': true,
		'overlayColor': '#000',
		'overlayOpacity': .9,
		'centerOnScroll': true,
		'zoomOpacity': true,
		'easingIn': "easeOutBack",
		'easingOut': "easeInBack",
		'easingChange': "easeInOutQuart",
		'hideOnContentClick': true,
		'hideOnOverlayClick': true,
		'showCloseButton': true,
		'titleShow': false,
		'transitionIn': 'elastic',
		'transitionOut': 'elastic',
		'padding': 1,
		'width': '300',
		'height': '400',
		'type': 'iframe'
	}

	$("a.modal").fancybox(modalOptions);
	$("a.modal_ajax").fancybox(modalAjaxOptions);

}
