function MM_reloadPage(init) {  //reloads the window if Nav4 resized

  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {

    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}

  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();

}

MM_reloadPage(true);

//-->
	$(document).ready(
					 
	function()
	{
		  
		$(".CongresCourant").click(function(){
			$("#slide_actu").toggle("fast");
				$(this).toggleClass("active");
				return false;
		});
		$(".actu").click(function(){
			// alert($(this).toggle);
			$("#slide_actu").toggle("fast");
			$(this).toggleClass("active");
			return false;
		});
	}
	);



<!--
//PLF-http://www.jejavascript.net/
var coeff=1.32;//Coefficient de reduction
var larg=445;//largeur maxi de image
var haut=630;//hauteur maxi de image
var coeffinit=coeff;
function changer() 
{
	if (document.image.width < larg) 
	{
		coeff = coeff-0.2;
		document.image.width = Math.round(larg/coeff);
		document.image.height = Math.round(haut/coeff);
		chang=window.setTimeout('changer();',60);//vitesse de effet
	}
	else 
	{
		y=document.getElementById("image_libre").offsetParent;
		
		window.clearTimeout(chang);
	}
}

function initial() 
{
	if (document.image.width >= 227) //larg/coeffinit) 
	{
		window.clearTimeout(chang);
		coeff = coeff+0.2;
		document.image.width = 225; //Math.round(larg/coeff);
	document.image.height = 317; //Math.round(haut/coeff);
	initi=window.setTimeout('initial();',60);//vitesse de l'effet
	}
	else
	{
		window.clearTimeout(initi);
	}
}
//-->

