jQuery(document).ready(function(){
    $('.fg-buttonset button').hover(
    	function(){ 
    		$(this).addClass("ui-state-hover"); 
    	},
    	function(){ 
    		$(this).removeClass("ui-state-hover"); 
    	}
    );
    $('.fg-buttonset button').click(function(){ 
        $(this).parent('div').find('button').removeClass("ui-state-active");
    	$(this).addClass("ui-state-active");
    	var currentMessage = $('textarea#message').val();
    	if(currentMessage.length == 132)
    	    $('textarea#message').val('');
    });
});