<!--
function resizeText(multiplier) {
 var stxt = document.getElementById('storytext');
if (stxt.style.fontSize == "") {
    stxt.style.fontSize = "0.8em";
  }
  stxt.style.fontSize = parseFloat(stxt.style.fontSize) + (multiplier * 0.1) + "em";
}

// -->	
