animate function is not working in jquery-1.2.6.min.js version

animate function is not working in jquery-1.2.6.min.js version


Hi,

I have a problem, I am using Jquery 1.2.6 version with existing website. I want to animate something on mouse over and for it I used animate function for it but I not able to get expected result.

Please help me out int it.


$(document).ready(function() {
                          
    $(".small-packagebuilder").css({"background-position": "5px 0"});   
   
    $(".builder_top_magenta span a").hover(function() {                                               
                                                   
                                                 
        $(".small-packagebuilder").animate({"background-position": "-1px 0"}, "fast");       
       
        }, function() {
        $(".small-packagebuilder").animate({"background-position": "5px 0"}, "fast");
       
    });

});