$(document).ready(function(){

	$("div.bloc-fond-beige > h2").each(function(){
		texte = $(this).html();
		txtblanc = texte.substr(0, 4);
		txtnormal = texte.substr(4, texte.length );
		$(this).html('<span style="color:#ffffff">'+txtblanc+'</span>'+txtnormal);
	});
	
	//MDH
		$("div.bloc-fond-blanc > h2").each(function(){
		texte = $(this).html();
		txtblanc = texte.substr(0, 4);
		txtnormal = texte.substr(4, texte.length );
		$(this).html('<span style="color:#ffffff">'+txtblanc+'</span>'+txtnormal);
	});
		/*$(".menu_principal li ul li").hover(function(){
		 $(".menu_principal li").addClass("hover_style");
		
	});*/

	
	//FLIR.init({ path: 'includes/flir/' });
	//FLIR.replace( ['h1','ul.menu_principal','div.bloc-fond-beige h2', 'div.bloc-fond-blanc h2' ] , new FLIRStyle({ cFont:'deliciorotf' , mode:'progressive',realFontHeight: true}) );
});