$(document).ready( function(){

  $('#usr').example(function() {
    return $(this).attr('title');
  });
 
  $('#pas').example(function() {
    return $(this).attr('title');
  });

  $('#msg').example(function() {
    return $(this).attr('title');
  });
  
  $('#msgc').example(function() {
    return $(this).attr('title');
  });
  
  $("#msg").charCounter(136, {
	  container: "#counter",
	  format: "Zbývá napsat znaků: <strong>%1</strong>",
	  pulse: true,
	  delay: 100
  });

});