$(document).ready(function(){
	$("a.titre").hover(
		function() {
			$(this).children("span").stop().animate({"width": "80%"}, "fast");
		},
		function() {
			$(this).children("span").stop().animate({"width": "20%"}, "fast");
		}
	);
});

function logout(niv){
	if (confirm('Quitter votre session?')) {
		if (niv=='acc') window.location.href = './logout.php';
		if (niv=='ed') window.location.href = '../logout.php';
	}
	return false;
}

