// JavaScript Document

window.onload = function() {

var sideHeight = document.getElementById("side").clientHeight;
var contHeight = document.getElementById("container").clientHeight;
var wrapHeight = contHeight-86+'px';

  document.getElementById("wrapper").style.height = wrapHeight;
  document.getElementById("side").style.height = wrapHeight;

}