//================================================================
//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(3);
var txt = new Array(3);
var marqueeText="";

//-------------------------------------
// Note the array index starts at 0 but the total number of elements is 4!
//-------------------------------------
hyperlnk[0] = 'whatsnew.php?id=advantage70';
hyperlnk[1] = 'whatsnew.php?id=blackberryrelease21';
hyperlnk[2] = 'whatsnew.php?id=newplatform';
//hyperlnk[2] = 'whatsnew.php?id=hfmarticle';
//hyperlnk[3] = 'whatsnew.php?id=hfmarticle';
txt[0] = 'ProTrak Announces Release of ProTrak Advantage CRM 7.0';
txt[1] = 'Enhanced User Experience for BlackBerry Users';
txt[2] = 'ProTrak Announces Development of a New .Net Platform';
//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;';
}


