var KeyTester = new Class({
	Extends: FormHandler,
	
	initialize: function()
	{
		this.parent({
			keyMap: {
				'TaskForm:shift+control+t,shift+control+m': this.addTask.bind(this),
				'LoginForm:enter': this.login.bind(this)
			}
		});
	},
	
	addTask: function()
	{
		alert('Task added!');
	},
	
	login: function()
	{
		alert('Login form submitted!');
	}
});

window.addEvent('load', function(){
	new KeyTester();
});