(function () {
  if (document.location.hash) {
    window.location.href = window.location.href.replace("#", "/");
  }
  
  var Norrona = {
    currentLanguage: document.location.pathname.slice(1, 3)
  };
  this.Norrona = Norrona;
  
  $(function () {
    var backgroundImage = new Norrona.BackgroundImage();

    /* Wicked safari bug */
    setTimeout(function () {
      backgroundImage.resize();
    }, 100);
  });
}());