﻿var theStoryTimeout = 500;var theWidgetOne = "_";var theWidgetTwo = "-";var theWidgetNone = "";
function whatWidget(theCurrentLength, theStorySummary) {
    if (theCurrentLength == theStorySummary.length) {return theWidgetNone;}
    if ((theCurrentLength % 2) == 1) {return theWidgetOne;}else {return theWidgetTwo;}}


