$(document).ready(function() {
	
	$("a.fbox").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 300,
		'zoomSpeedOut'			: 300
		
	});
	
	$("a.pbox").fancybox({
		'frameWidth'			: 640,
		'frameHeight'			: 480,
		'overlayShow'			: false,
		'zoomSpeedIn'			: 300,
		'zoomSpeedOut'			: 300,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',	
		'hideOnContentClick'	: false	
	});
		
	$("a.qtip").fancybox({
		'frameWidth'			: 640,
		'frameHeight'			: 480,
		'overlayShow'			: false,
		'zoomSpeedIn'			: 300,
		'zoomSpeedOut'			: 300,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',	
		'hideOnContentClick'	: false	
		});	
	
	$("#persi_e_ritrovati, .info, #cosa_devi_sapere").corners();
	
	$("a.qtip[title], a.ntip[title]").qtip({ 
		style: { 
			name: 'cream', 
			tip: true,
			border: {
				width: 2,
				radius: 8
			},
			width: 380
		},
		position: {
			corner: {
				target: 'bottomMiddle',
				tooltip: 'topMiddle'
			}
		}
	});

});