$(function(){
  $('input').each(function(){
	  if($(this).attr('title').length > 0){
		  $(this).example(function(){
			 return $(this).attr('title');
		  });
	  }
  });
});
