document.observe('lightview:loaded', function(s){
			
	//show search field when pressing F when not in an input field
	document.observe('keydown', function(e){

		switch(e.keyCode){
			case 118: //F7
				Lightview.show({
					href: '/create_todo.php',
					rel: 'ajax',
					title: 'Een todo aanmaken',
					options: {
						autosize: true,
						topclose: true,
						ajax: {
							method: 'get',
							evalScripts: true
						}
					}
				});

			
			case Event.KEY_ESC:
			
				break;
		}
			
	});
});
