/*


// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
function create() {
        this.width = ''
        this.height = ''
        this.src = ''
        this.href = ''
        this.border = ''
        this.mouseover = ''
}
ads = new Array()
for(var i=1; i<=5; i++) { ads[i] = new create() }

ads[1].width = "247"
ads[1].height = "78"
ads[1].src = "http://www.schsa.org/images/promoBanners/coalition-partnerships247x78.gif"
ads[1].href = "http://www.schsa.org/PublicHealth/mainpages/coalitionPartnerships/index.html"
ads[1].border = "0"
ads[1].mouseover = "Agencies, groups, boards and networks for the benefit of the community...Click here."

ads[2].width = "247"
ads[2].height = "78"
ads[2].src = "http://www.schsa.org/images/promoBanners/coalition-partnerships247x78.gif"
ads[2].href = "http://www.schsa.org/PublicHealth/mainpages/coalitionPartnerships/index.html"
ads[2].border = "0"
ads[2].mouseover = "Agencies, groups, boards and networks for the benefit of the community...Click here."

ads[3].width = "247"
ads[3].height = "78"
ads[3].src = "http://www.schsa.org/images/promoBanners/coalition-partnerships247x78.gif"
ads[3].href = "http://www.schsa.org/PublicHealth/mainpages/coalitionPartnerships/index.html"
ads[3].border = "0"
ads[3].mouseover = "Agencies, groups, boards and networks for the benefit of the community...Click here."

ads[4].width = "247"
ads[4].height = "78"
ads[4].src = "http://www.schsa.org/images/promoBanners/coalition-partnerships247x78.gif"
ads[4].href = "http://www.schsa.org/PublicHealth/mainpages/coalitionPartnerships/index.html"
ads[4].border = "0"
ads[4].mouseover = "Agencies, groups, boards and networks for the benefit of the community...Click here."

ads[5].width = "247"
ads[5].height = "78"
ads[5].src = "http://www.schsa.org/images/promoBanners/coalition-partnerships247x78.gif"
ads[5].href = "http://www.schsa.org/PublicHealth/mainpages/coalitionPartnerships/index.html"
ads[5].border = "0"
ads[5].mouseover = "Agencies, groups, boards and networks for the benefit of the community...Click here."

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 = 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


*/