$(document).ready(function() {
	$("input:text").each(function() {
		if (this.value == '') this.value = this.title;
	});
	$("input:text").focus(function(){
		if ((this.value == this.title) && (this.name != 'fm_subj')) {
			this.value = '';
			$(this).css("color", "black");
		}
	});
	$("input:text").blur(function(){
		if ((this.value == '') && (this.name != 'fm_subj'))  {
			this.value = this.title;
			$(this).css("color", "red");
		}	
	});
});
