/*
 * Command for jQuery Example Plugin 1.3.3
 * Populate form inputs with example text that disappears on focus.
 *
 * This additional script should make any form fields with the "jexample" class have the title used as example text 
 *
 */


$('input:text').example(function() {
  return $(this).attr('title');
});

$('textarea').example(function() {
  return $(this).attr('title');
});