function resizeText(multiplier) 
{   
	var fontsz = "1em"; //Default to 1em   
	if (Cookie.get('site_font_size')) 
	{     
		fontsz = Cookie.get('site_font_size');   
	}   
	fontsz = parseFloat(fontsz) + (multiplier * 0.05) + "em";   
	document.body.style.fontSize = fontsz;  	
	var myCookie = Cookie.set('site_font_size', fontsz, {     
		domain:'www.attractmore.co.uk', path:'/', duration: 365 }); 
} 

function setfontsize() {
	if (Cookie.get('site_font_size')) 
	{     
		fontsz = Cookie.get('site_font_size');   
		fontsz = parseFloat(fontsz) + "em";   
		document.write('<style media="screen" type="text/css"> body { font-size:'+ fontsz + '; } </style>');
	}
}

