// JavaScript Document

		function create() {
			this.width = ''
   			this.height = ''
       		this.src = ''
       		this.href = ''
       		this.border = ''
       		this.mouseover = ''
       		this.sponsor = ''
		}
			ads = new Array()
			for(var i=1; i<=7; i++) { ads[i] = new create()
		}

		ads[1].width = "399"
		ads[1].height = "118"
		ads[1].src = "./images_public/homePage_top1.jpg"
		//ads[1].href = ""
		ads[1].border = "0"
		
		ads[2].width = "399"
		ads[2].height = "118"
		ads[2].src = "./images_public/homePage_top2.jpg"
		//ads[2].href = ""
		ads[2].border = "0"
		
		ads[3].width = "399"
		ads[3].height = "118"
		ads[3].src = "./images_public/homePage_top3.jpg"
		//ads[3].href = ""
		ads[3].border = "0"
		
		ads[4].width = "399"
		ads[4].height = "118"
		ads[4].src = "./images_public/homePage_top4.jpg"
		//ads[4].href = ""
		ads[4].border = "0"
		
		ads[5].width = "399"
		ads[5].height = "118"
		ads[5].src = "./images_public/homePage_top5.jpg"
		//ads[5].href = ""
		ads[5].border = "0"

		ads[6].width = "399"
		ads[6].height = "118"
		ads[6].src = "./images_public/homePage_top6.jpg"
		//ads[5].href = ""
		ads[6].border = "0"

		ads[7].width = "399"
		ads[7].height = "118"
		ads[7].src = "./images_public/homePage_top7.jpg"
		//ads[5].href = ""
		ads[7].border = "0"
		
		var n = Math.random() + ''
		n = parseInt(n.charAt(7))
		if(n >7) {
			n = n - 7
		}
		else if(n==0) {
			n = n + 7
		}
		n += ""

		var image = ads[n]
		var ad = ""
		//ad += '<a href="' + image.href + '" \n'
		//ad += 'onMouseOut="self.status=\'\'"> \n'
		ad += '<img src="' + image.src + '" width=' + image.width
		ad += '\n height=' + image.height + ' border=' + image.border