tentando usar o plugin jquery tooltip, o objeto não tem o método “tooltip”

Estou usando esta dica de ferramenta:http: //flowplayer.org/tools/demos/tooltip/index.htm

Tenho as seguintes linhas no meu arquivo html:

<script src="/javascripts/home.js" type="text/javascript"></script>
<script src="http://cdn.jquerytools.org/1.2.6/jquery.tools.min.js" type="text/javascript"></script>
<script type="text/javascript" src="/scripts/jquery.min.js"></script>

<div id="boo">
<img src="image1.jpg" title="this thing is a tool"/>
<img src="image2.jpg" title="this thing is also tool"/>
</div>

Tenho a seguinte linha no meu arquivo home.js:

$("#boo img[title]").tooltip();

Tenho a seguinte linha no meu arquivo css:

.tooltip {
    display:none;
    background:transparent url(/tools/img/tooltip/black_arrow.png);
    font-size:12px;
    height:70px;
    width:160px;
    padding:25px;
    color:#fff; 
}

Eu recebo este erro:

Uncaught TypeError: Object [object Object] has no method 'tooltip'

Estou no meu juízo final. Sinto que segui exatamente o exemplo no site, mas não faço ideia do que está acontecend

questionAnswers(3)

yourAnswerToTheQuestion