jQuery ToolTip, doesn't work... why??

jQuery ToolTip, doesn't work... why??

Hello guys,

let me first show you what i'm talking about.

and i'd like to use it here:  http://www.jacoponardiello.com/V002/index.htm

I've downloaded latest jquery and the plugin and uploaded both in /js/ folder

Now, some simple code:

  1. <script type="text/javascript" src="./js/jquery.js"></script> 
  2. <script type="text/javascript" src="./js/jquery.tipTip.js"></script>          
  3.          
  4.  <script type="text/javascript">                                         
  5.    // TOOOLTIPPING
  6.      $(".hyperlink").tipTip({maxWidth: "auto", edgeOffset: 10});                             

  7.  </script>  
  8. </head>
I've included jquery and plugin pages into the html page, now, as shown in the plugin page i set up the class to be called in order to show the tooltip restyled.

  1. <p id="home-first">My name is <a class="hyperlink" href="./about.htm" title="Check out here if you want to know more About Me">Jacopo Nardiello</a><br />

  2. <script type="text/javascript" src="./js/jquery.js"></script> 
  3. <script type="text/javascript" src="./js/jquery.tipTip.js"></script>          
  4.          
  5.  <script type="text/javascript">                                         
  6.    // TOOOLTIPPING
  7.      $(".hyperlink").tipTip({maxWidth: "auto", edgeOffset: 10});                             

  8.  </script>  
  9. </head>

  10. <p id="home-first">My name is <a class="hyperlink" href="./about.htm" title="Check out here if you want to know more About Me">Jacopo Nardiello</a><br />

Well, it doesn't work. 
PS: i'm a SUPER newbie with jquery, first time using it in my life. I'm not scared by code lines as i'm pretty confident with PHP and C but just assume i know nothing about JS.

Thanks in advance for the help