function Controller() {
	this.init = function() {
		alert("Init method in Controller not specified");
	};

	//this is base class
	return true;
}