テキストエリアに入力する情報をナビゲートする

<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.formnotifier.js"></script>
<script type="text/javascript">
//<![CDATA[
	$(document).ready(function(){
		$(':text').formNotifier();
	});
//]]>
</script>
<style type="text/css">
#container{
	margin: 0 0 0 20px;
}
#container input {
	margin:5px 0;
	display:block;
}
.formnotifier{
	color:#c97586;
}
</style>
</head>
<body>
<div id="container">
	<h3>お名前</h3>
	<input id="myText1" type="text" title="山田 太郎" maxlength="60" />
	<h3>メールアドレス</h3>
	<input id="myText2" type="text" title="yamada@test.com" maxlength="60" />
	<h3>住所</h3>
	<input id="myText3" type="text" title="東京都新宿区1-2-3" maxlength="60" />
	<h3>電話番号</h3>
	<input id="myText4" type="text" title="03-1234-5678" maxlength="60" /><br />
	<input id="myButton" type="submit" value="送信" />
</div>
</body>
</html>