//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(
"Raw data...",
"for trading",
"for your site",
"coverage",
"pricing"
);

var urlList = new buildArray(
"",
"b2cdata.html",
"b2bdata.html",
"datacoverage.html",
"dataprices.html"
);
