jQuery(document).ready(function($) {
	function registerClickBlur() {
		$(".clickblur").focus(function() {
			if ($(this).val() == $(this).attr("title")) {
				$(this).val("");
				$(this).addClass("hlcolor");
			}
		}).blur(function() {
			if ($(this).val() == "") {
				$(this).val($(this).attr("title"));
				$(this).removeClass("hlcolor");
			}
		}).each(function(){
			if($(this).val() != $(this).attr("title")) $(this).addClass("hlcolor");
		});
	}

	registerClickBlur();
});
