'use strict';

(function () {
  var url, containerbg, shift, leftcol, content, childNodes, i, length, childNode;
  url = 'url(templates/waterandstone_blue/images/bg_inside2.jpg)';
  containerbg = document.getElementById('containerbg');
  if (containerbg) {
    containerbg.style.backgroundImage = url;
  }
  shift = 28;
  leftcol = document.getElementById('leftcol');
  if (leftcol) {
    leftcol.style.width = leftcol.offsetWidth + shift + 'px';
  }
  content = document.getElementById('content_main');
  if (content) {
    content.style.width = content.offsetWidth - shift + 'px';
    childNodes = content.childNodes;
    length = childNodes.length;
    for (i = 0; i < length; i += 1) {
      childNode = childNodes[i];
      if (childNode.nodeName === 'TABLE') {
        childNode.style.width = childNode.offsetWidth - shift + 'px';
      }
    }
  }
}());