jQuery(document).ready(function(){
	if (leggiCookie('CDC-Popover_Ebook_Launch') == false)
	{
		setTimeout("showPopover()", 3000);
		creaCookie('CDC-Popover_Ebook_Launch','OK', 1440);
	}
});


function showPopover()
{
	jQuery("#popover-rmc").fadeIn("slow");
	
	jQuery('.cancel-popover').click(function() {
		jQuery("#popover-rmc").fadeOut("slow");
	});
}

