/* Scripts JQUERY - CH1 - Marionnette 
Derniere modification le 28/05/2008
------------------------------------------------------------------------------------------------------------------------ */

$(document).ready(function(){ 

$("#sidebar ul li a").each( function () {

if ($(this).text() == "Groupe de travail") {
		$(this).removeAttr("href");
	}
if ($(this).text() == "Actions") {
		$(this).removeAttr("href");
	}
if ($(this).text() == "CDAM") {
		$(this).removeAttr("href");
	}
}); 

/* Fin Jquery  */
});
 

