var thisThing = new Array(9);
for ( i=0; i < thisThing.length; i++)
  thisThing[i] = new Array(4);
// set element values
//alert("before: ");
thisThing[0][0] = "T000000000001";
thisThing[0][1] = "Aspect Systems";
thisThing[0][2] = "";
thisThing[0][3] = "3"; // Default Aspect
thisThing[1][0] = "webpg"; thisThing[1][1] = "Vision";              thisThing[1][2] = "asVision.html";
thisThing[2][0] = "webpg"; thisThing[2][1] = "Mission";             thisThing[2][2] = "asmission.html";
thisThing[3][0] = "webpg"; thisThing[3][1] = "Homepage";            thisThing[3][2] = "ashome.html";
thisThing[4][0] = "scene"; thisThing[4][1] = "Home Scene";          thisThing[4][2] = "sceneashome.html";
thisThing[5][0] = "webpg"; thisThing[5][1] = "Support";             thisThing[5][2] = "asSupport.html";
thisThing[6][0] = "scene"; thisThing[6][1] = "Our Offices";         thisThing[6][2] = "sceneasoffices.html";
thisThing[7][0] = "webpg"; thisThing[7][1] = "Graphic Material";    thisThing[7][2] = "asGraphicMaterial.html";
thisThing[8][0] = "webpg"; thisThing[8][1] = "Contact Information"; thisThing[8][2] = "asContactInfo.html";

things[thingNo]= thisThing;

thingNo++;
//alert("after: ");