$(document).ready(function() {
wireUpDisplayTextboxes();
});

// displays hint text on any input element with the 'title' attribute set
function wireUpDisplayTextboxes() {
jQuery.noConflict();
var el = jQuery('input[Title]');
// show the display text
el.each(function(i) {
    jQuery(this).attr('value', jQuery(this).attr('title'));
});

// hook up the blur & focus
el.focus(function() {
    if (jQuery(this).attr('value') == jQuery(this).attr('title'))
        jQuery(this).attr('value', '');
}).blur(function() {
    if (jQuery(this).attr('value') == '')
        jQuery(this).attr('value', jQuery(this).attr('title'));
});
}
