function create() {
        this.width = ''
        this.height = ''
        this.src = ''
        this.border = ''
		this.title = ''
		this.story = ''
		this.who = ''
}
ads = new Array()
for(var i=1; i<=6; i++) { ads[i] = new create() }

ads[1].width = "780"
ads[1].height = "180"
ads[1].src = "../images/top_01.jpg"
ads[1].border = "0"
ads[1].title = "Friendly, Professional & Hard Working"
ads[1].story = "I am writing not only to say that I am pleased with the gas furnace I purchased from your company, but also to let you know that the two technicians did an outstanding job of installing my new furnace. They were very friendly, but also very professional and hard working."
ads[1].who = "R. Nelson, Seattle"

ads[2].width = "780"
ads[2].height = "180"
ads[2].src = "../images/top_02.jpg"
ads[2].border = "0"
ads[2].title = "Crew Went the Extra Mile"
ads[2].story = "Two of your technicians recently spent two days in our home installing a new gas boiler to warm our very chilly house. They were <b>efficient, friendly, and did a great job cleaning up</b> afterwards. The two hard-working guys also kindly installed a new light in our shadowy furnace “nook” so we can now actually see our sparkling new boiler. In an era when good service is hard to find, my husband and I just thought you should know these two gentlemen <b>went the extra mile for us</b>."
ads[2].who = "Penny Legate, Seattle"

ads[3].width = "780"
ads[3].height = "180"
ads[3].src = "../images/top_03.jpg"
ads[3].border = "0"
ads[3].title = "Guidance and Professionalism"
ads[3].story = "We would like to thank you for your <b>guidance and professional work</b> in installing our heating unit.  We would be more than happy to recommend your services to others."
ads[3].who = "J. Christiansen, Federal Way"

ads[4].width = "780"
ads[4].height = "180"
ads[4].src = "../images/top_04.jpg"
ads[4].border = "0"
ads[4].title = "Staff A Credit to Your Company"
ads[4].story = "Recently your company installed a furnace and an electronic air cleaner in my home. Your company was highly recommended to be by a previous customer. The three men I dealt with are a <b>credit to your company</b>.  Any chance I get, I will recommend Brennan."
ads[4].who = "D. Tollman, Renton"

ads[5].width = "780"
ads[5].height = "180"
ads[5].src = "../images/top_05.jpg"
ads[5].border = "0"
ads[5].title = "Excellent Products, Fast Service"
ads[5].story = "As with any job, your crew ran into the occasional challenge – but they dealt with the challenges effectively. We do feel we received <b>excellent products</b> and <b>knowledgeable, attentive and fast service</b> from Brennan."
ads[5].who = "L. Copass, Mercer Island"

ads[6].width = "780"
ads[6].height = "180"
ads[6].src = "../images/top_06.jpg"
ads[6].border = "0"
ads[6].title = "Superb Service"
ads[6].story = "We would like to take this opportunity to formally thank you for the <b>superb service</b> we received. It is not every day that consumers have the pleasure of working with such a well organized and service-oriented contracting firm."
ads[6].who = "M. & A. Nouwens, Shoreline"

var n = Math.random() + ''
n = parseInt(n.charAt(6))
if(n >6) {
        n = n - 6
}
else if(n==0) {
        n = n + 6
}
n += ""

var image = ads[n]
var adA = ""
var adB = ""
adA += '<img src="' + image.src + '" width=' + image.width
adA += '\n height=' + image.height + ' border=' + image.border

adB += '<li class="title">' + image.title + '</li> \n'
adB += '<li>"' + image.story + '"</li> \n'
adB += '<li class="who">&mdash; ' + image.who + '</li>'