$(document).ready(function() {
		$(".geokbd").geokbd();
	})

$.fn.geokbd = function()
{
	symbols = "abgdevzTiklmnopJrstufqRySCcZwWxjh";
	this.relatedCheckbox = $("<input type=\"checkbox\" name=\"geokbd\" />")
	.attr('checked',true);
	;
	
	$(this).before(this.relatedCheckbox);
	
	$(this).keypress(function(e){
		if ((e.charCode)==96)
		{
			if ($(this).next('input').attr('checked'))
			{
				$(this).next('input').attr('checked',false);
			}
			else
			{
				$(this).next('input').attr('checked',true);
			}
			
			return false;
		}
		if ($(this).next('input').attr('checked'))
		{
			if ((index = symbols.indexOf(String.fromCharCode(e.charCode))) >= 0)
			{
				$(this).val($(this).val()+String.fromCharCode(index + 4304));
				return false;
			}
		}
		
	})
}