var FeaturedSponsor = [
{
	ID: "0",
	Title:"COMAND Solutions",
	Logo:"http://www.allentown.org/images/sponsor/banners/comand_solutions.gif",
	URL:"http://www.allentown.org/business/comandsolutions/index.html"
}
,{
	ID: "1",
	Title:"El Buen Amigo",
	Logo:"http://www.allentown.org/images/sponsor/banners/el_buen_amigo.gif",
	URL:"http://www.allentown.org/business/elbuenamigo/index.html"
}
];

function randInt(low,high)
{
	return Math.floor(Math.random() * (1-0+1)+0);
}

// select and display a random sponsor
var i = randInt(0,1);
document.write("<a href=" + FeaturedSponsor[i].URL + "><img src=" + FeaturedSponsor[i].Logo + " alt=" + escape(FeaturedSponsor[i].Title) + "/></a>");

