[jQuery] Star-rating/jQuery difficulty

[jQuery] Star-rating/jQuery difficulty

<html>
<body>
Hello folks,
I'm having a problem initialising Diego's star-rating system.
I'm using it on an extension site - extension bulletins are drawn into
the current page via an ajax call to existing html text pages via the
following function....
<tt>function fnGetEbookFile(ni){
    $("#asset_fback").hide();
   
$.get('textfiles\/'+ni+".txt",function(txt){
    $("#justlist,#tech").hide();
    $("#text").html(txt).show();
    $('input[@type=radio].star').rating();
    var options = {dataType: 'json', beforeSubmit:
showRequest,success: showResponse};
   
$('#comments_form,#search_form,#rating_form').submit(function()
{$(this).ajaxSubmit(options);return false;});
       
$.get('scripts/ajax_ebooks.asp?id=getC&combo='+ni+"&q="
+ new Date().getTime(),function(txt){
       
$("#displayC").html(txt);
        });
    });
};
</tt>I am using a 0-5.0 rating system with half stars.
When I view the page "fresh", everything is in order.  But
when I move to the next page in the leaflet or move to a previous one and
then come back to page containing the rating code, the stars are
presented, but the cancel rating icon is not displayed, and the input
elements are not apparently recognised as when I submit the form, the
only elements posted to the server is a hidden element that I've added to
the form.
If this description is sufficiently clear, any suggestions about my code
that might be the source of my problem?
Thanks,
Bruce
</body>
</html>