//jdCourse_z.prototype = new jdCourse_LC();
//jdCourse_z.prototype = new jdCourse_SCORM();
function jdCourse_z() {
	this.init = init;

	this.init();

	function init() {
		jdCourse_z.prototype.init.call(this);	// Generates error on IE5, so it's commented just for IE5.
		/* Overriden variables */
		//this.defaultMasteryScore = 80;
		/* Added Internal variables */
	}

}

