function launch_popup() {
	$("#home_popup").modal({
		overlayClose:true,
		onOpen: function (dialog) {
			dialog.overlay.fadeIn('slow', function () {
				dialog.data.hide();
				dialog.container.fadeIn('slow', function () {
					dialog.data.slideDown('slow');
				});
			});
		},
		onClose: function (dialog) {
			dialog.data.fadeOut('slow', function () {
				dialog.container.hide('slow', function () {
					dialog.overlay.slideUp('slow', function () {
						$.modal.close();
					});
				});
			});
		}
	});
	//return false; DISABILITATO PERCHE' SUL LINK DENTRO FLASH IL RETURN FALSE GENERAVA ERRORE 
}

function launch_video_popup() {
	$("#video_popup").modal({
		containerId:'simplemodal-container-video',
		overlayClose:true
	});
	//return false; DISABILITATO PERCHE' SUL LINK DENTRO FLASH IL RETURN FALSE GENERAVA ERRORE 
}

$(document).ready(function() {

	// lancia il popup della home
	$(".launch_home_popup").click(function() {
		launch_popup();
	});
});


