 var ItemsForSale_Title = new Array() //Add the titles for each item below. Number any new items sequentiallyItemsForSale_Title[0] = "No 997 - Van Truck" //Item 1 TitleItemsForSale_Title[1] = "No 515 Van - Canadian Version"  //Item 2 TitleItemsForSale_Title[2] = "No 941 Custom Van" //Item 3 TitleItemsForSale_Title[3] = "No 997 - Van Truck" //Item 4 TitleItemsForSale_Title[4] = "Tonka 1956 Hi-Way Sign Accessory Set" //Item 5 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(4); //This sets the array rowsItemsForSale_picture[0][0] = "vantruck1.jpg" //Item 1 picture 1ItemsForSale_picture[0][1] = "vantruck4.jpg" //Item 1 picture 2ItemsForSale_picture[0][2] = "vantruck3.jpg" //Item 1 picture 3ItemsForSale_picture[1][0] = "van515A.jpg" //Item 1 picture 1ItemsForSale_picture[1][1] = "van515B.jpg" //Item 1 picture 2ItemsForSale_picture[1][2] = "van515C.jpg" //Item 1 picture 3ItemsForSale_picture[2][0] = "941A.jpg" //Item 1 picture 1ItemsForSale_picture[2][1] = "941B.jpg" //Item 1 picture 2ItemsForSale_picture[2][2] = "941C.jpg" //Item 1 picture 3ItemsForSale_picture[3][0] = "997A.jpg" //Item 1 picture 1ItemsForSale_picture[3][1] = "997B.jpg" //Item 1 picture 2ItemsForSale_picture[3][2] = "997C.jpg" //Item 1 picture 3ItemsForSale_picture[4][0] = "sign1.jpg" //Item 1 picture 1ItemsForSale_picture[4][1] = "sign2.jpg" //Item 1 picture 2ItemsForSale_picture[4][2] = "sign3.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] = 44.00 //Item 1 priceItemsForSale_Price[1] = 50.00 //Item 2 priceItemsForSale_Price[2] = 48.00 //Item 3 priceItemsForSale_Price[3] = 26.00 //Item 4 priceItemsForSale_Price[4] = 155.00 //Item 5 pricevar ItemsForSale_Description = new Array() //This is the description for each item.ItemsForSale_Description[0] = "No. 997 Van Truck. In near mint condition. Van has a slight flaw at the top of the box. Box corners are taped. However, this is a hard to find item with the box and the decals intact. Price includes shipping in the U.S. only." //Item 1 DescriptionItemsForSale_Description[1] = "This hard to find 515 is the Canadian version of this toy. Left side flap of the box is missing. This does include a look book which is a very hard to find item for Canadian Tiny Tonkas. The book will be a great reference tool for the collector. I would rate the toy a 9/10 due to minor blemish below the window. Price includes shipping in the U.S. only." //Item 2 DescriptionItemsForSale_Description[2] = "No 941 Custom Van - An extremely hard to find collectible Tiny Tonka in mint condition with the orignal box. The box does have the original stickers on the top and that's the only flaw. Price includes shipping in the U.S. only."//Item 3 DescriptionItemsForSale_Description[3] = "No 997 Custom Van - Van minus the box. In near mint condition. Slight flaw can be found on the box but otherwise another excellent tiny tonka for your collection. Price includes free shipping in the U.S. only." //Item 4 DescriptionItemsForSale_Description[4] = "Set includes 6 realistic signs all in excellent condition with minimal play wear. Price includes free shipping in the U.S. only." //Item 4 Description
