	var styleUrl = '/.style/standard/xhtml/';

	function extend(childClass, parentClass)
	{
		var f = function() {}
		
		f.prototype = parentClass.prototype;
		childClass.prototype = new f();
		childClass.prototype.constructor = childClass;
		childClass.parentClass = parentClass.prototype;
	}

