$(document).ready(function() {

	$("textarea#twittercomments").keyup(function()
	{ 
		var valor = $(this).val()
		
		if (valor == '')
		{
			$("span#countLetters").html("0");
		}
		else
		{
			var length = valor.length;
			
			$("span#countLetters").html(length);			
		}
	});  
});
