﻿// JScript File
Event.observe(window, 'load', function ()
  {
    initiateMenuBar('menubarMap');
    setBGLayerHeight();
  }
);
Event.observe(window, 'resize', function ()
  {
    setBGLayerHeight();
  }
);

function setBGLayerHeight()
{
  var intWindowHeight = getWindowHeight();
  var intContentHeight = 0;
  if (document.getElementById('page'))
    intContentHeight = document.getElementById('page').offsetHeight;
  if (intContentHeight > intWindowHeight)
    if (document.getElementById('container'))
      document.getElementById('container').style.height = intContentHeight.toString() + 'px';
}
