// bannerrotation II - Thomas Salvador, 2010, brauchbar.de
// free to use, if this notice is kept intact

var banner_data = new Array();

function banner_define(picture,link) {
  banner_data[banner_data.length] = new Array(picture,link);
}

function banner_output(id) {
  container = document.getElementById(id);
  no   = (new Date()).getTime()%banner_data.length;
  img  = banner_data[no][0];
  href = banner_data[no][1];
  container.innerHTML = '<a href="'+href+'" target="_top">'
  +'<img src="'+img+'"></a>';
}
