
function changerTaille()
{
	if(CSSActive() == "grand")
	{
		changeCSS('normal');
		document.getElementById("changetailleimage").src="images/btn_taille_grand.gif";
	}else
	{
		changeCSS('grand');
		document.getElementById("changetailleimage").src="images/btn_taille_petit.gif";
	}
}
window.onload = function(e)
{
	if(document.getElementById("changetailleimage"))
	{
		if(CSSActive() == "grand")
		{
			document.getElementById("changetailleimage").src="images/btn_taille_petit.gif";
		}else
		{
			document.getElementById("changetailleimage").src="images/btn_taille_grand.gif";
		}
		
	}
}

