var $j = jQuery.noConflict();

$j(document).ready(function(){
               $j('.hover').hover(function() {
               $j(this).stop().animate({ backgroundColor: "hic" }, 200);
       },function() {
                $j(this).stop().animate({ backgroundColor: "white" }, 280);
       });
});


