var InputController = function() {
	var that = {};
	
	that.observe = function() {
		console.log("input");
	};
	return that;
};