function create() {
        this.width = ''
        this.height = ''
        this.src = ''
		this.href = ''
        this.border = ''
}
ad3s = new Array()
for(var i=1; i<=5; i++) { ad3s[i] = new create() }

ad3s[1].width = "53"
ad3s[1].height = "53"
ad3s[1].src = "images/random/3/3a.jpg"
ad3s[1].href = "#"
ad3s[1].border = "0"

ad3s[2].width = "53"
ad3s[2].height = "53"
ad3s[2].src = "images/random/3/3b.jpg"
ad3s[2].href = "#"
ad3s[2].border = "0"

ad3s[3].width = "53"
ad3s[3].height = "53"
ad3s[3].src = "images/random/3/3c.jpg"
ad3s[3].href = "#"
ad3s[3].border = "0"

ad3s[4].width = "53"
ad3s[4].height = "53"
ad3s[4].src = "images/random/3/3d.jpg"
ad3s[4].href = "#"
ad3s[4].border = "0"

ad3s[5].width = "53"
ad3s[5].height = "53"
ad3s[5].src = "images/random/3/3d.jpg"
ad3s[5].href = "#"
ad3s[5].border = "0"

var n = Math.random() + ''
n = parseInt(n.charAt(5))
if(n >5) {
        n = n - 5
}
else if(n==0) {
        n = n + 5
}
n += ""

var image = ad3s[n]
var ad3 = ""
ad3 += '<img src="' + image.src + '" width="' + image.width + '" height="' + image.height + '" border="' + image.border + '"></a>'
