$(document).ready(function(){
    
	// function thats called when any of the keys on the keyboard are pressed
	$("#keyboard input").bind("click", function(e) {
									   
		if( $(this).val() == "Shift" ) {}
		
		else {
		
			$('#pwd').replaceSelection($(this).val(), true);
		}
	});
	
});


