lse123 0 Junior Poster in Training

Do you know what error? how include rich text-area in jQuery and
http://tinymce.moxiecode.com/ ? see attach... get ONLY text-area non rich text-area.

<html>
	<head>
		<script src="../jquery.min.js"></script>
		<script src="../tinymce/jscripts/tiny_mce/jquery.tinymce.js"></script>

		<script src="../tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
		<script>
		$(document).ready(function(){
			$('textarea.rte').each(function(){
				TINYMCE.replace(this.name);
			});
		});
		</script>
	</head>
	<body>
		<form action="page2.php" method="post">
			<table width="100%">
				<tr>
					<th style="width:120px">Page Text</th>
					<td>
						<textarea class="rte" style="width:100%;height:200px;" name="body"></textarea>
					</td>
				</tr>
				<tr><th colspan="2"><input type="submit" /></th></tr>
			</table>
		</form>
	</body>
</html>