
function pageInSection(arg_path){ 
  this.path = arg_path;
  this.setLocation = setPath;
}

function setPath(){
  if(this.path == "home"){this.path = "";}
  else if(this.path == "section"){this.path = "../";}
  else if(this.path == "subsection"){this.path = "../../";}
}


