$(document).ready(function() {
	var COOKIE_NAME = 'ignoreMonOfficeo';
	var cookiesOptions = { path: '/', expires: 30 };
	if($.cookie(COOKIE_NAME) != null)
		return;
	$("#access").qtip({
		content: {
			url: '/spip.php?page=push',
			title: {
				text: 'Découvrez Mon OFFICEO',
				button: 'Ne plus afficher'
			}
		},
		show: {
			when: {
				event: "pushMonOfficeo"
			}
		},
		position: {
			corner: {
				target: 'bottomLeft',
				tooltip: 'topRight'
			}
		},
		style: { 
			width: 400,
			height: 480,
			tip: 'topRight',
			name: 'light' // Inherit the rest of the attributes from the preset dark style
		}
	});
	setTimeout(function() {
		$("#access").trigger("pushMonOfficeo");
		$("#access").qtip("api").elements.button.bind("click", function() {
			$.cookie(COOKIE_NAME, true, cookiesOptions);		
		});
	}, 7000);
});

