//================================================================
//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] = '#';
hyperlnk[1] = '#';
hyperlnk[2] = '#';
hyperlnk[3] = '#';

txt[0] = 'White Lake Mall - Your Online Community and Business Center.';
txt[1] = 'Connect to people in the community.';
txt[2] = 'Promote your business and service.';
txt[3] = 'Advertise your business and service for free!';

//--------------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;';
}


