In the code currently, all files are referenced by where they are located relative to the page you are referencing it from. In most cases, this is done by building a full, absolute path to the file by prefixing the file name to load with the directory path of the file you are loading from. For example,
$basedir = dirname(__FILE__) . '/..';
include_once($basedir . '/lib/Utility.class.php');