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