var ads = [
  {image:"img/ads/directtire.jpg",link:"http://www.directtire.com/",bg:"ededed"},
	{image:"img/ads/MoS_banner.jpg",link:"http://www.mos.org/",bg:"ededed"},
	{image:"img/ads/Sylvania.jpg",link:"http://www.sylvania.com/",bg:"FFF"},
	{image:"img/ads/NorthHill_Logo.jpg",link:"http://www.northhill.org/",bg:"FFF"},
	{image:"img/ads/WFM_Logo.jpeg",link:"http://www.wholefoodsmarket.com/",bg:"FFF"},
	{image:"img/ads/tmobile.jpg",link:"http://mobile-broadband.t-mobile.com/mobile-hotspot",bg:"FFF"}
];

var j = Math.floor(ads.length*Math.random());
var length=ads.length;
/*window.onload = function () {
  document.getElementById('ad').src = ads[i].image;
  document.getElementById('adlink').href = ads[i].link;
}*/

function showAds () {
    for (i=0;i<length;i++) {
      $("#adbanner").append('<a href="'+ads[j % length].link+'" id="adlink" target="_blank" style="background:#'+ads[j % length].bg+'">'+
                            '<img src="'+ads[j++ % length].image+'" /></a>');
    }
}
