$('document').ready(function () {
	$('#rech').keyup(function (e) {
            var texte;
			$.ajax({
				url: '/php/liste-cours-dyn.php',
				method: 'get',
				data : ({t : e.target.value}),
				dataType: "html",
				//async:false,
				success: function(response){
					$('#centre').html(response);
					if (e.target.value.length >= 2) {
						texte = 'Recherche de cours sur <span style="font-weight:bold;font-style:italic">' + e.target.value + "</span>" ;
					}
					else {
						texte = "Recherche";
					}
					$('#sousmenuh').html('<ul><li><a href="/php/cherche.php?r=' + e.target.value +'" >' + texte +'</a></li></ul>');
				}
			});
	});
});
