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.2) + "em";
        // Change body text size
        document.getElementById("contentbox").style.fontSize = fontsz;
		//Set a new cookie 
        var myCookie = Cookie.set('site_font_size', fontsz, {
          domain: 'rachelheldevans.com',
          duration: 365 //Save for 1 year
        });
      }
	  
//function to reset text size to any passed number (added by Dan Evans, based on above funciton)
function resetText(resetnumber) {
        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 = (resetnumber) + "em";
        // Change body text size
        document.getElementById("contentbox").style.fontSize = fontsz;
		
		//Set a new cookie 
        var myCookie = Cookie.set('site_font_size', fontsz, {
          domain: 'rachelheldevans.com',
          duration: 365 //Save for 1 year
        });
	}
        
		