// Fonction d'ouverture de fenetre popup centree// Simon - egzakt.com// 2004-10-28//function egz_openwindow_param(lien,cible,w,h,param) {	var _win;	_win = window.open(lien,cible,param);	_win.moveTo((screen.width - w)/2,(screen.height - h)/2);	_win.focus();	return _win;}/* * Affichage d'un contenu suivant *  * @copyright	egzakt.com * * @version 	2007/06/05 * @package		EDU-083 * @author 		Emilie */function bloc_deroulant(objet) {	objet.next().slideToggle("normal");	objet.toggleClass("selected");	objet.parent().toggleClass("bloc_deroulant_selected");	return false;}$(function() {	$(".zone_deroulante").hide();		$("a.lien_deroulant").click(		function(){			return bloc_deroulant($(this));		}	);		// Image en coin pour la navigation du haut	$("#navig_haut a").hover(function(){		$(this).children("img").attr("src","/images/boutons/navig_haut_gauche_over.jpg");	},function(){		if ($(this).attr("class") != "selected")			$(this).children("img").attr("src","/images/boutons/navig_haut_gauche.jpg");	});	});