
function create() {
        this.width = ''
        this.height = ''
        this.src = ''
        this.href = ''
        this.border = ''
        this.mouseover = ''
        this.sponsor = ''
}
ads = new Array()
for(var i=1; i<=6; i++) { ads[i] = new create() }

ads[1].width = "220"
ads[1].height = "220"
ads[1].src = "http://www.healthandfitnessnaturally.com/media/high_blood_pressure.jpg"
ads[1].href = "http://www.healthandfitnessnaturally.com/archives/hypertension-and-natural-weapons.html"
ads[1].border = "0"
ads[1].mouseover = "High Blood Pressure - Natural Treatments"
ads[1].sponsor = "Take a Natural Approach"

ads[2].width = "220"
ads[2].height = "146"
ads[2].src = "http://www.healthandfitnessnaturally.com/media/energy_medicine.jpg"
ads[2].href = "http://www.healthandfitnessnaturally.com/archives/acupressure-balance-your-energy-raleigh.html"
ads[2].border = "0"
ads[2].mouseover = "Restore Health and Balance Energy"
ads[2].sponsor = "Achieve Energetic Balance With Acupressure"

ads[3].width = "220"
ads[3].height = "332"
ads[3].src = "http://www.healthandfitnessnaturally.com/media/acupressure_relieve_your_pain.jpg"
ads[3].href = "http://www.healthandfitnessnaturally.com/archives/relieve-pain-using-acupressure-raleigh.html"
ads[3].border = "0"
ads[3].mouseover = "Relieve Pain With Our Gentle Natural Approach"
ads[3].sponsor = "Relieve Your Pain With Acupressure"

ads[4].width = "220"
ads[4].height = "147"
ads[4].src = "http://www.healthandfitnessnaturally.com/media/ear_candles_3.jpg"
ads[4].href = "http://www.healthandfitnessnaturally.com/archives/ear-candles-raleigh.html"
ads[4].border = "0"
ads[4].mouseover = "Relieve Congestion, Allergies, Drainage"
ads[4].sponsor = "Relief With Ear Candles"

ads[5].width = "220"
ads[5].height = "151"
ads[5].src = "http://www.healthandfitnessnaturally.com/media/chi_brushing.jpg"
ads[5].href = "http://www.healthandfitnessnaturally.com/archives/chi_brushing.html"
ads[5].border = "0"
ads[5].mouseover = "Remove the Barriers"
ads[5].sponsor = "Chi Brushing"

ads[6].width = "220"
ads[6].height = "220"
ads[6].src = "http://www.healthandfitnessnaturally.com/media/fitness_ball_3.jpg"
ads[6].href = "http://www.healthandfitnessnaturally.com/archives/personal-training-introduction.html"
ads[6].border = "0"
ads[6].mouseover = "Tone and Healthy"
ads[6].sponsor = "Personal Training"

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 ad = ""
ad += '<a href="' + image.href + '" \n'
ad += 'onMouseOver="self.status=\'' + image.mouseover + '\'\;return true" \n'
ad += 'onMouseOut="self.status=\'\'"> \n'
ad += '<img src="' + image.src + '" width=' + image.width
ad += '\n height=' + image.height + ' border=' + image.border
ad += '\n><br>Service: ' + image.sponsor + '</a>'


