function initBanner(){
  var bannercontainer = document.getElementById("bannercontainer");
  bannercontainer.style.position = "absolute";
  bannercontainer.style.display = "block";
  bannercontainer.style.overflow = "hidden";
  bannercontainer.style.height = "60px";
}

function showBanner(){
  document.getElementById("bannercontainer").style.height = "537px";
}

function hideBanner(){
  document.getElementById("bannercontainer").style.height = "60px";
}