var ItemsForSale_Title = new Array() //Add the titles for each item below. Number any new items sequentiallyItemsForSale_Title[0] = "Vintage set of Tiny Tonka Cars" //Item 1 TitleItemsForSale_Title[1] = "No. 996 Van Truck and Trailer" //Item 1 TitleItemsForSale_Title[2] = "No. 997 Van Truck" //Item 2 TitleItemsForSale_Title[3] = "No. 969 Forklift and Container" //Item 3 Titlevar rows = 12; //This is the total number of pictures for the page. Each item will always have three pictures so if there are two items this should be 6 and if you remove an item you need to remove three from this numbervar cols = 3; //This tells the array how many pictures are in each row. Always leave this alone.var ItemsForSale_picture = new Array(cols); //This sets the array columnsfor (i=0; i<rows; i++)	ItemsForSale_picture[i]=new Array(3); //This sets the array rowsItemsForSale_picture[0][0] = "car1.jpg" //Item 1 picture 1ItemsForSale_picture[0][1] = "car2.jpg" //Item 1 picture 2ItemsForSale_picture[0][2] = "car3.jpg" //Item 1 picture 3ItemsForSale_picture[1][0] = "trailer1.jpg" //Item 1 picture 1ItemsForSale_picture[1][1] = "trailer2.jpg" //Item 1 picture 2ItemsForSale_picture[1][2] = "trailer3.jpg" //Item 1 picture 3ItemsForSale_picture[2][0] = "van2.jpg" //Item 1 picture 3ItemsForSale_picture[2][1] = "van3.jpg" //Item 1 picture 3ItemsForSale_picture[2][2] = "van4.jpg" //Item 1 picture 3ItemsForSale_picture[3][0] = "forklift1.jpg" //Item 1 picture 1ItemsForSale_picture[3][1] = "forklift2.jpg" //Item 1 picture 2ItemsForSale_picture[3][2] = "forklift3.jpg" //Item 1 picture 3//When you add pictures be sure the format follows as above. If you remove an item you will need to renumber the array correctly.var ItemsForSale_Price = new Array() //This sets the price for each item. Item one is first, etcItemsForSale_Price[0] = 32.00 //Item 1 priceItemsForSale_Price[1] = 48.85 //Item 1 priceItemsForSale_Price[2] = 13.00 //Item 2 priceItemsForSale_Price[3] = 44.85 //Item 3 pricevar ItemsForSale_Description = new Array() //This is the description for each item.ItemsForSale_Description[0] = "This classic vintage set of 3 Tiny Tonka Cars from the 1970's is a collectors dream and near mint in condition. The only thing better would be if they came with their original boxes. Featured are the Draggin Wagon No. 452, Tiny-Tonka Taxi No. 438 and Tiny Tonka Stinger No. 456. Makes a great addition to any collection. Made of press steel and plastic with all original decals still attached and rubber wheels. Sold as a lot." //Item 1 DescriptionItemsForSale_Description[1] = "SOLD " //Item 2 DescriptionItemsForSale_Description[2] = "SOLD"ItemsForSale_Description[3] = "SOLD"