function fancy() {
	$("a.fancy, a[rel^='lightbox'], a.grouped_elements").fancybox({
		'zoomOpacity' : true,
		'overlayOpacity' : 0.5,
		'overlayShow' : true,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500
	});
	
	$("a.fancytrovacanza").click(function(){
		$t = $(this);
		if ($('html.mobile').size()){
			$t.attr('target','_blank');
		} else {
			$.fancybox({
				'zoomOpacity' : true,
				'type':'iframe',
				'titleShow': false,
				'overlayOpacity' : 0.5,
				'overlayShow' : true,
				'zoomSpeedIn' : 500,
				'width' : 900,
				'height' : '100%',
				'zoomSpeedOut' : 500,
				'href':$t.attr('href'),
				'centerOnScroll':true
			});
			return false;
		}
	});
	
	$("a.fancytrovacanzaportale").click(function(){
		$t = $(this);
		if ($('html.mobile').size()){
			$t.attr('target','_blank');
		} else {
			window.parent.$.fancybox({
				'zoomOpacity' : true,
				'type':'iframe',
				'titleShow': false,
				'overlayOpacity' : 0.5,
				'overlayShow' : true,
				'zoomSpeedIn' : 500,
				'width' : 900,
				'height' : '100%',
				'zoomSpeedOut' : 500,
				'href':$t.attr('href'),
				'centerOnScroll':true
			});
			return false;
		}
	});
	
	$("a.fancy_iframe").fancybox({
		'zoomOpacity' : true,
		'overlayOpacity' : 0.5,
		'overlayShow' : true,
		'type':'iframe',
		'hideOnOverlayClick':false,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'autoscaling' : false,
		'frameWidth' : 640,
		'frameHeight' : 350,
		'scrolling' : 'no',
		'display' : 'block',
		'visibility' : 'visible',
		'autoDimensions' : false,
		'autoScale' : true
	});

	$("a.fancy_overlay").fancybox({ // per la campagna pubblicitaria alla tv: 20110531
		'zoomOpacity' : true,
		'overlayOpacity' : 0.5,
		'overlayShow' : true,
		'type':'iframe',
		'hideOnOverlayClick':false,
		'zoomSpeedIn' : 500,
		'zoomSpeedOut' : 500,
		'autoscaling' : false,
		'frameWidth' : 520,
		'frameHeight' : 446,
		'scrolling' : 'no',
		'resize' : false,
		'display' : 'block',
		'visibility' : 'visible',
		'autoDimensions' : false,
		'width': 520,
		'height': 446,
		'autoUpdate': true,
		'autoScale' : false
	});

}

function fIESucks() { // per la campagna pubblicitaria alla tv: 20110531
	
	$("a.fancy_overlay").trigger("click");
//	alert("ciao");
//	$("#fancybox-wrap").css({'width': '520px'});
//	$("#fancybox-outer").css({'width': '520px', 'height': '446px', 'border-width':'0'});
//	$("#fancybox-content").css({'width': '520px', 'height': '446px', 'border-width':'0'});
//	alert("ciao2");
	
	}

function fOverlay() {
	
	setTimeout('fIESucks()', 3000); 
	
}
