Fuzzylr, given that you are declaring your object properties using the 'var' keyword, denotes PHP 4 OOP usage..Not sure which PHP version you are using (4 or 5), but you would be better off using PHP 5 (and version 5 notation) instead, as OOP has been greatly improved in that version.
Also, instead of stuffing your class into an include as you have done, another alternative could be to put your classes in a folder and then you can use an autoload() method to have PHP check which class(es) in your page is being instantiated, and have the system automatically load those classes for you..
So for example, assuming you save your classes with '.class.php' postfixing in a folder called classes set in the root of your site, you could do something like:
function __autoload($class) {
require_once '/classes/'.$class . '.class.php';
}
That snippet would be in your main page.. so you can keep all your classes in that specific classes folder, and calling all classes you use is simple and automated (granted, if you are using PHP 4, I'm not sure this functionality would be availbale to you).