function Product(description, price, ImageUrl, Productid) { this.description = description; this.price = price; this.ImageUrl = ImageUrl; this.Productid = Productid; } var Products = new Array(); Products[0] = new Product('Autumn Heart Jr Raglan', '15.00', 'AH-raglans.jpg', '53');