// Copyright 2000-2007, Newsfutures, Inc. All Rights Reserved. // Confidential and Proprietary Information of Newsfutures, Inc. // go through the various mkt graphs specified in graphMkts var fgdiv = document.getElementById("frontGraphDiv"); var fgidx = 0; function displayFrontGraph() { var item = graphMkts[fgidx++ % graphMkts.length]; fgdiv.innerHTML = "
" + item.name + "
" + ""; setTimeout("displayFrontGraph()", 10000); }