		fontSize = 62.5;
		
		function init(){
				
			if(GetCookie("fontSize")!="")
			{
				fontSize = GetCookie("fontSize");
			}
			else
			{
				fontsize = 62.5;
			}
		}
		
		function resizeText(v){
			init();
			fontSize = v;
			SetCookie("fontSize" , fontSize, null, "/");
			document.body.style.fontSize = fontSize + "%";			
		}


		function resizeTextUp(){
			init();
			fontSize = parseFloat(fontSize) + 10;
			SetCookie("fontSize" , fontSize, null, "/");
			document.body.style.fontSize = fontSize + "%";	
		}


		function resizeTextDown(){
			init();
			fontSize = parseFloat(fontSize) - 10;
			SetCookie("fontSize" , fontSize, null, "/");
			document.body.style.fontSize = fontSize + "%";	
		}
		
		function initText()
		{
			init();
			document.body.style.fontSize = fontSize + "%";	
		}


