function resizeText(multiplier) {
	var fontsz = "1.0em"; //Default to 1em
	if(multiplier!="0"){
		if (Cookie.read('site_font_size')) {
			// Set fontsz to the cookie value if it exists
         	fontsz = Cookie.read('site_font_size');
        }
		//alert(fontsz+"\n"+parseFloat(fontsz)+"\n"+(multiplier * 0.2));
		fontsz = parseFloat(fontsz) + (multiplier * 0.2) + "em";
	}
	document.getElementById("contents").style.fontSize = fontsz;
	//Set a new cookie 
	var myCookie = Cookie.write('site_font_size', fontsz, {
		domain: 'ymalaga.com',
		path:'/',
		duration: 365 //Save for 1 year
	
	});
}
