																														var itemCount;var currentStory;var currentLength;var storySummary;var targetLink;var characterTimeout;var storyTimeout;var browserVersion;var widgetOne;var widgetTwo;var spaceFiller;var storyState;var isIE;function StartHighlights() {characterTimeout = 40;storyTimeout = 2000;widgetOne = "|";widgetTwo = "|";storyState = 0;itemCount = HighlightList.length;currentStory = -1;currentLength = 0;spaceFiller = "";runTicker();  }function runTicker() {if(storyState == 0) {setupNextStory();}if(currentLength != storySummary.length) {drawStory();} else {closeOutStory();}}function setupNextStory() {storyState++;currentStory++;currentStory = currentStory % itemCount;storySummary = HighlightList[currentStory][0];targetLink   = HighlightList[currentStory][1];currentLength = 0;LinkHTML = "<A href='" + targetLink + "' style='COLOR:black; FONT-SIZE:11px' target='_parent'>";}function drawStory() {var widget;if((currentLength % 2) == 1) {widget = widgetOne;} else {widget = widgetTwo;}var summaryFiller =  spaceFiller + storySummary.substring(0,currentLength) + widget;TSV = LinkHTML + summaryFiller + "</A>";if (document.layers) {TP = document.layers.HighlightText.document; TP.open(); TP.write(TSV); TP.close();}else if (document.getElementById) {document.getElementById("HighlightText").innerHTML = TSV;}else if (document.all) {document.all.HighlightText.innerHTML = TSV;}if (storySummary.substring(currentLength, currentLength+ 1) == "&") {while ((currentLength < storySummary.length) && (storySummary.substring(currentLength, currentLength+1) != ";")) {currentLength++;}} else {currentLength++;}setTimeout("runTicker()", characterTimeout);}function closeOutStory() {TSV = LinkHTML + storySummary + spaceFiller + "</A>";if (document.layers) {TP = document.layers.HighlightText.document; TP.open(); TP.write(TSV); TP.close();}else if (document.getElementById) {document.getElementById("HighlightText").innerHTML = TSV;}else if (document.all) {document.all.HighlightText.innerHTML = TSV;}storyState = 0;setTimeout("runTicker()", storyTimeout);}																										
