function monHoraireIsSignedIn() {
	return _is_signed_in;
}

function checkOTitle() {
	if ($.cookie('otitle') == 'true') {
		return true;
	} 
	return false;
}

function setVolume(vol) {
	$.cookie('vol', vol, { expires: 30 , path: '/' });
}
function getVolume() {
	return $.cookie('vol');
}