The double colon's allow you to reference a function of a class without actually creating an instance of the class. The syntax is:
classname::functioname();
Note, however, that if any references in the function are made to $this, the call will fail--you will need to create an instance of the class to use the function. Hope that helps.
Chris King