prompt text for text input with jQuery

Simple jQuery plugin to show prompt text for text inputs. Requries jQuery color animations plugin.

single input text
$("input[name=single]").prompt("default value via javascript");
option
$("input[name=op]").prompt({
						text:"some prompt text",
						color:"#FF0000"});
multiple inputs
$("input[name^=multiple]").prompt("helper text by default");