how include rich text-area in jQuery and tinymce

how include rich text-area in jQuery and tinymce

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.
jquery 1.3 i use, but tinymce come with it's own?
     
  1. <html>
  2. <head>
  3. <script src= "../jquery.min.js"></script>
  4. <script src= "../tinymce/jscripts/tiny_mce/jquery.tinymce.js"></script>
  5.  
  6. <script src= "../tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
  7. <script>
  8. $ (document ). ready ( function ( ) {
  9. $ ( 'textarea.rte' ). each ( function ( ) {
  10. TINYMCE. replace ( this. name );
  11. } );
  12. } );
  13. </script>
  14. </head>
  15. <body>
  16. <form action= "page2.php" method= "post">
  17. <table width= "100%">
  18. <tr>
  19. <th style= "width:120px">Page Text</th>
  20. <td>
  21. <textarea class= "rte" style= "width:100%;height:200px;" name= "body"></textarea>
  22. </td>
  23. </tr>
  24. <tr><th colspan= "2"><input type= "submit" /></th></tr>
  25. </table>
  26. </form>
  27. </body>
  28. </html>