////
// begin variables to change per page
////
//page last modified by Scooter on 09-01-2004
////
$depth = 1; //this is the number of folders (depth of the page)
$title = "Viking Model G-87 Custom Pool Cue"; //this is the title of the page
////
//end of variables to change per page
////
//examples:
// www.hawleys.com/index.htm would have a depth of 0
// www.hawleys.com/ would have a depth of 0
// www.hawleys.com/5280/5280.htm would have a depth of 1
// www.hawleys.com/supplies/CueRacks/cueRacks.htm would have a depth of 2
if ($depth == 1){$extension = "../";}
elseif ($depth == 2){$extension = "../../";}
elseif ($depth == 3){$extension = "../../../";}
elseif ($depth == 0 or !$depth){$extension = "";}
include($extension."header.php");
?>