Tweet! Plugin not displaying tweets?

Tweet! Plugin not displaying tweets?

Not sure what I am doing wrong. I followed all the steps on the plugin site. I am new to jquery and javascript in general.

http://tweet.seaofclouds.com

The tweets should be displaying above the "Follow Me" button on this site: www.saranatasha.com

If you view the source you can see I already have an empty div setup there where the tweets are supposed to populate. This client wanted to use Weebly's WYSIWYG site building tool so I'm not sure if it could be related to that, but all the necessary files are there. Is there an incorrect path issue?

Here's the head code. The highlighted parts are pertinent to the plugin:
  1. <head>
  2. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
  3. <title> Sara Natasha | Singer-Songwriter - Home</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.  
  6. <link href="main_style.css" rel="stylesheet" type="text/css" />
  7. <link href="/files/theme/jquery.tweet.css" rel="stylesheet" type="text/css" />
  8. <link href="/files/theme/jquery.tweet.query.css" rel="stylesheet" type="text/css" />
  9.  
  10. <script type="text/javascript" language="javascript" src="/files/theme/jquery-1.4.1.min.js"></script>
  11. <script type="text/javascript" language="javascript" src="/files/theme/jquery.pngFix.js"></script>
  12. <script type="text/javascript" language="javascript" src="/files/theme/jquery.tweet.js"></script>
  13.  
  14. <script type="text/javascript">
  15.     $(document).ready(function(){
  16.         $(document).pngFix();
  17.     });
  18. </script>
  19. <script type='text/javascript'>
  20.     $(document).ready(function(){
  21.         $(".tweet").tweet({
  22.             username: "honestonyx",
  23.             join_text: "auto",
  24.             avatar_size: 32,
  25.             count: 3,
  26.             auto_join_text_default: "we said,",
  27.             auto_join_text_ed: "we",
  28.             auto_join_text_ing: "we were",
  29.             auto_join_text_reply: "we replied to",
  30.             auto_join_text_url: "we were checking out",
  31.             loading_text: "loading tweets..."
  32.         });
  33.     });
  34. </script>  
  35.  
  36. <script type='text/javascript'>var STATIC_BASE = 'http://static-cdn.weebly.com/';</script><script type='text/javascript' src='http://static-cdn.weebly.com/weebly/images/common/prototype-1.6.0.3.js' ></script>
  37. <script type='text/javascript' src='http://static-cdn.weebly.com/weebly/images/common/effects-1.8.2.js' ></script>
  38. <script type='text/javascript' src='http://static-cdn.weebly.com/weebly/images/common/weebly.js' ></script>
  39. <script type='text/javascript' src='http://static-cdn.weebly.com/weebly/images/common/lightbox202.js?6' ></script>
  40. <script type='text/javascript' src='http://static-cdn.weebly.com/weebly/libraries/flyout_menus.js?3'></script>
  41. <script type='text/javascript'>function initFlyouts(){initPublishedFlyoutMenus([{"id":"493878486283458","title":"Home","url":"index.html"},{"id":"848992651162068","title":"Blog","url":"blog.html"},{"id":"340324031927220","title":"Music","url":"music.html"},{"id":"196402341755679","title":"Pics","url":"pics.html"},{"id":"401378644515180","title":"Links","url":"links.html"}],'493878486283458','<li class=\'weebly-nav-more\'><a href=\"#\">more...</a></li>','active')}if (Prototype.Browser.IE) window.onload=initFlyouts; else document.observe('dom:loaded', initFlyouts);</script>
  42. <link rel='stylesheet' href='http://static-cdn.weebly.com/weebly/images/common/common.css?4' type='text/css' />
  43. <link rel='stylesheet' type='text/css' href='/files/main_style.css' title='weebly-theme-css' />
  44. </head>