/*
 * (c) 2009-2010 Fred C for http://kiq.me/
 */

function charcount(f) {
    if (!f.value.length) {
	return;
    }
    len = 140 - f.value.length;
    if (len > 20) {
        color = '#ccc';
    } else if (len <= 0) {
        color = '#f00';
    } else if (len <= 5) {
        color = '#f44';
    } else if (len <= 10) {
        color = '#f66';
    } else if (len <= 20) {
        color = '#aaa';
    }
    $("#twitter .chars").html(len);
    $("#twitter .chars").css('color', color);
};
    

$(document).ready(function() {
    var idmsg = $("#id_msg");
    idmsg.bind('keyup', function() {
	charcount(this);
    });
    $("#twitter .chars").html(140 - $("#id_msg").text().length);
});
