jQuery.fn.clearFocusResetBlur = function(){
	$(this).focus(function(){
		if( $(this).val() == $(this).attr('alt') ) $(this).val("");
	});
	$(this).blur(function(){
		if( $(this).val() == "") $(this).val($(this).attr('alt'));
	});
}