function initNiki() {
   if (!useOWZTemplate)
   {
      changeBackground();
   }

   enable_output_escaping();
   enable_output_static();

   if (enableAddThis)
   {
      addAddThis(addThisUser);
   }
   if (enableLikeThis)
   {
      addLikeThis();
   }

   if (jQuery.browser.msie && jQuery.browser.version.number <= 6)
   {
      document.getElementById('column0').style.height = document.body.offsetHeight - 2 + 'px';
   }
}

function enable_output_static() {
  if(navigator.product == 'Gecko') {
    if (document.getElementById('static_content')) {
      document.getElementById('static_content').innerHTML = htmlDecode(document.getElementById('static_content').innerHTML);
    }
  }
}

function init_touchScreen(){
   window.resizeTo(window.screen.availWidth,window.screen.availHeight-1);
   window.resizeTo(window.screen.availWidth,window.screen.availHeight);
}

jQuery(document).ready(initNiki);
