//================================================================
//To update:
//1. change the array size for both hyperlnk and txt (count number of items)
//2. update each item's content
//3. save and upload to web server
//================================================================
var hyperlnk = new Array(4);
var txt = new Array(4);
var marqueeText="";

//-------------------------------------
// Note the array index starts at 0 but the total number of elements is 4!
//-------------------------------------
hyperlnk[0] = 'whatsnew.php?id=newplatform';
hyperlnk[1] = 'whatsnew.php?id=advantage60';
hyperlnk[2] = 'whatsnew.php?id=blackberryrelease';
//hyperlnk[2] = 'whatsnew.php?id=hfmarticle';
hyperlnk[3] = 'whatsnew.php?id=hfmarticle';
txt[0] = 'ProTrak Announces Development of a New .Net Platform';
txt[1] = 'ProTrak Announces a Major New Release - ProTrak Advantage CRM 6.0';
txt[2] = 'ProTrak Announces ProTrak Mobile for BlackBerry PDAs';
//txt[2] = 'Private Equity Firm, Hamilton Lane, Installs ProTrak Advantage CRM';
txt[3] = 'CRM: A "Core" Technology for Hedge Funds';

//--------------Do not edit below this line --------------
for (var i = 0; i < hyperlnk.length; i++) {
marqueeText += '<img src="images/comm-tiny-bullet-ar7.gif" width="7" height="9" /><a href="' +
hyperlnk[i] +
'" class="marquee6">'+
txt[i] +
'</a>&nbsp;';
}

