//include: BuildArray.js
function buildArray() {
 var a = buildArray.arguments;
 for (i=0; i<a.length; i++) {
 this[i]=a[i];
 } 
this.length=a.length;
} 

var dropDownList = new buildArray(
"Market...",
"currencies",
"commodities",
"indices"
);

var urlList = new buildArray(
"",
"http://currencies.theFinancials.com/",
"http://commodities.theFinancials.com/",
"http://indices.theFinancials.com/"
);
