// Location Engine ====================

function getPrefix() {
  
  var thelocation = (window.location).toString();
  thelocation = thelocation.split("/");
  
  var prefix = "";
  for(var i = 0; i < (thelocation.length - 5); i++)
    prefix += "../";

  return prefix;
}
//=====================================
