<!--

function create() {
        this.href = ''
        this.src = ''
        this.height = ''
        this.alt = ''
}

var numAds = 2;
ads = new Array()
for(var i=1; i<=numAds; i++) { ads[i] = new create() }

ads[1].href = "/category/07/Sport-Recreation/supershape.htm"
ads[1].src = "/assets/banners/images/supershape.gif"
ads[1].height = "325"
ads[1].alt = "supershape - FREE One Week Try Out"

ads[2].href = "/category/07/Sport-Recreation/supershape.htm"
ads[2].src = "/assets/banners/images/supershape.gif"
ads[2].height = "325"
ads[2].alt = "supershape - FREE One Week Try Out"

var n = Math.random() + ''
n = parseInt(n.charAt(2))

n = n%numAds

n += 1

var image = ads[n]
var ad = ""
ad += '<a href="' + image.href + '" target="_blank"><img src="' + image.src + '" width="175" height="' + image.height + '" alt="' + image.alt + '" border="0"></a>'

// document.write(ad)

//-->