$('#m').keydown(function() {
setTimeout("$('#typing_message').css('display', 'block')", 250);
});
$('#m').keyup(function() { setTimeout("$('#typing_message').css('display', 'none')", 1000); });
var typingId = 0;
$('#m').keydown(function() {
$('#typing_message').show();
clearTimeout(typingId);
typingId = setTimeout(function() {
$('#typing_message').hide();
}, 3000);
});