function init()
{
strTextSize = "<a href=\"#\" title=\"Petit\" onclick=\"changeTextSize('70%');return false;\"><img src=\"\/images\/summit-font-small.gif\" width=\"20\" height=\"19\" alt=\"Petit\" \/></a> <a href=\"#\" title=\"Moyen\" onclick=\"changeTextSize('80%');return false;\"><img src=\"\/images\/summit-font-medium.gif\" width=\"20\" height=\"19\" alt=\"Moyen\" \/></a> <a href=\"#\" title=\"Grand\" onclick=\"changeTextSize('90%');return false;\"><img src=\"\/images\/summit-font-large.gif\" width=\"20\" height=\"19\" alt=\"Grand\" \/></a> <a href=\"#\" title=\"Tr&egrave;s grand\" onclick=\"changeTextSize('100%');return false;\"><img src=\"\/images\/summit-font-x-large.gif\" width=\"20\" height=\"19\" alt=\"Tr&egrave;s grand\" \/></a>";	
	
	textID = document.getElementById("textsize");
	
	//Detect if browser supports these functions
	if (document.getElementById && document.createElement)
	{	
		if(textID)
		{
			textID.innerHTML = strTextSize;
		}
	}
}

function changeTextSize(size)
{
	document.body.style.fontSize = size;
}