[jQuery] jquery i18n : $.i18n is not a function

[jQuery] jquery i18n : $.i18n is not a function


Hi there,
I'm tryin tu usejquery.i18n plugin.
In my html i insert these javascript code
<script type="text/javascript" src="js/bankone/jquery-1.3.2.min.js"> </
script>
<script type="text/javascript" src="js/bankone/jquery.i18n.js"> </
script>
<script type="text/javascript" src="js/bankone/i18n_properties.js"></
script>
The file i18n_properties.js contain my list of keys/values .
jquery.i18n.js come from http://code.google.com/p/jquery-utils/source/browse/trunk/src/jquery.i18n.js
After that i write :
    $.i18n('fr');
    document.write($.i18n('liens','opposition')); //OK
    $(document).ready(function () {
        $("p").text($.i18n('liens','opposition'));//$.i18n is not a function
    });
I have the error $.i18n is not a function in the ready function.
Someone already have resolve such a problem ??
I really don't understand the problem.
Thanks for any help