// function resizeMainSection() {
//   var mainSection = $('#main');
//   var sideFooter = $('#side-footer');
// 
//   var windowHeight = document.height;
//   mainSection.minHeight(windowHeight);
//   //sideFooter.top(windowHeight - 300);
// }
// 
// $(document).ready(function() {
//   resizeMainSection();
// });

var currentName = 'main';

function toggle(name) {
  var element = $('#' + name);
  var link = $('#' + name + '_link');
  var currentElement = $('#' + currentName);
  var currentLink = $('#' + currentName + '_link');

  currentElement.hide();
  currentLink.removeClass('selected');

  element.show();
  link.addClass('selected');
  currentName = name;
}

