$(function() {
	jQuery('input,textarea').each(function() {
		if (!jQuery(this).attr('title') || jQuery(this).val() != '') {
			return;
		}
		jQuery(this).attr('value', jQuery(this).attr('title')).addClass('titled');
		$(this).focus(function() {
			var oThis = jQuery(this);
			if (oThis.attr('value') == oThis.attr('title')) {
				oThis.attr('value', '').removeClass('titled');
			}
		});
		$(this).focusout(function() {
			var oThis = jQuery(this);
			if (oThis.attr('value') == '') {
				oThis.attr('value', oThis.attr('title')).addClass('titled');
			}
		});
	});
	jQuery('form').submit(function() {
		jQuery('input,textarea', this).each(function(i,o) {
			var oThis = jQuery(this);
			if (oThis.attr('value') == oThis.attr('title')) {
				oThis.attr('value', '');
			}
		});
	});
});
