


function get_uri_parts(limit) {

  var t = location.host.split('.');
  
  // console.log('length: ' + t.length);

  for (q=t.length-1;q>=limit;q--){
    // console.log(q + ':' + t[q]);
  }

}

