function setArray(img, desc, link){ this.img = img this.desc = desc this.link = link } var a = new Array(6) var numOfImages = 6 a[0] = new setArray("http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/images/featured_product_01.jpg", "Molding Plane Set", "http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/bit_molding.html#molding_set_anchor") a[1] = new setArray("http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/images/featured_product_02.jpg", "Merle Band Clamp", "http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/merle_clamp.html") a[2] = new setArray("http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/images/featured_product_03.jpg", "Half Blind Dovetail Jig", "http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/dovetailjig.html#halfblind_anchor") a[3] = new setArray("http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/images/featured_product_04.jpg", "Heavyweight Router Table", "http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/router_table_2.html#heavyweight_table_anchor") a[4] = new setArray ("http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/images/featured_product_05.jpg", "Shaker Raised Panel Door Set", "http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/set_shaker.htm") a[5] = new setArray ("http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/images/featured_product_06.jpg", "Katana Raised Panel Door Set", "http://www.mlcswoodworking.com/shopsite_sc/store/html/smarthtml/pages/katset1.htm") var i = Math.floor(Math.random() * numOfImages) var randomImageCaption = eval("a[" + i + "].desc") var randomImage = ""