// reframe.js
var queryString = '';
if (window == top) {
  if (location.search.length > 0) {
    queryString = location.search;
  } else {
    if (location.pathname.substring(0,6) == '/page/') {
      queryString = '?page=' + location.pathname.substring(6,location.pathname.length);
    }
  }
  location.replace('http://www.kozyclutter.com/index.html' + queryString);
}

