function resizeText(multiplier) {
        var fontsz = "1.0em"; //Default to 1em
        if (Cookie.get('site_font_size')) {
          // Set fontsz to the cookie value if it exists
          fontsz = Cookie.get('site_font_size');
        }
        fontsz = parseFloat(fontsz) + (multiplier * 0.1) + "em";
        // Change body text size
        document.body.style.fontSize = fontsz;
        
        //Set a new cookie 
        var myCookie = Cookie.set('site_font_size', fontsz, {
          domain: 'arecoveryjourney.com',
		  path:'/',
          duration: 365 //Save for 1 year
        });
      }