
function createads() {
        this.width = ''
        this.height = ''
        this.src = ''
        this.href = ''
        this.border = ''
        this.mouseover = ''
        this.sponsor = ''
}


ads = new Array()
for(var i=1; i<=9; i++) { ads[i] = new createads() }

/*ads[1].width ="190"
ads[1].height = "174"
ads[1].src = "/portal/images/hot/news1.jpg"
ads[1].href = "/IceCandle/WebForms/IceCandleSale.aspx"
ads[1].border = "0"
ads[1].alt = "Purchase Ice Candles for your loved ones online. Click to find out more details."*/

ads[1].width ="190"
ads[1].height = "174"
ads[1].src = "/images/banners/home/home_eai.jpg"
ads[1].href = "/solutions/enterpriseapp.htm"
ads[1].border = "0"
ads[1].alt = "Enterprise Application Integration"

ads[2].width ="190"
ads[2].height = "174"
ads[2].src = "/images/banners/home/home_egovernment.jpg"
ads[2].href = "/solutions/egovernment.htm"
ads[2].border = "0"
ads[2].alt = "e-Government Solutions"

ads[3].width ="190"
ads[3].height = "174"
ads[3].src = "/images/banners/home/home_elearning.jpg"
ads[3].href = "/solutions/ilearn.htm"
ads[3].border = "0"
ads[3].alt = "e-Learning Solutions"

ads[4].width ="190"
ads[4].height = "174"
ads[4].src = "/images/banners/home/home_engineering.jpg"
ads[4].href = "/solutions/engineering.htm"
ads[4].border = "0"
ads[4].alt = "Engineering Systems"

ads[5].width ="190"
ads[5].height = "174"
ads[5].src = "/images/banners/home/home_hosting.jpg"
ads[5].href = "/services/applicationhosting.htm"
ads[5].border = "0"
ads[5].alt = "Hosting Services"

ads[6].width ="190"
ads[6].height = "174"
ads[6].src = "/images/banners/home/home_icity.jpg"
ads[6].href = "/products/icity.htm"
ads[6].border = "0"
ads[6].alt = "Municipal Portal, Electronic Services Delivery, and Community Collaboration"

ads[7].width ="190"
ads[7].height = "174"
ads[7].src = "/images/banners/home/home_oracle.jpg"
ads[7].href = "/services/oracle.htm"
ads[7].border = "0"
ads[7].alt = "Oracle Solutions"

ads[8].width ="190"
ads[8].height = "174"
ads[8].src = "/images/banners/home/home_SOA.jpg"
ads[8].href = "/index.htm"
ads[8].border = "0"
ads[8].alt = "SOA"

ads[9].width ="190"
ads[9].height = "174"
ads[9].src = "/images/banners/home/home_webaccess.jpg"
ads[9].href = "/services/webaccessibility.htm"
ads[9].border = "0"
ads[9].alt = "Web Accessibility"

var n = Math.random() + ''
n = parseInt(n.charAt(9))
if(n >9) {
        n = n - 9
}
else if(n==0) {
        n = n + 9
}
n += ""

var image = ads[n]
var imgBanners = ""
imgBanners += '<a href="' + image.href + '" >'
imgBanners += '<img src="' + image.src + '" width=' + image.width
imgBanners += '\n height=' + image.height + ' border=' + image.border + ' alt="' + image.alt + '"></a>'
