Hi lookgrak,
I do know that hover requires two functions, a hover over and a hover out.
so it should look something like this...
$(document).ready(function(){
$('.moduletable_menu ul.menu li a, a.mainlevel').hover(
function() {
$(this).animate({paddingLeft: 10}, 300);
},
function(){
$(this).animate({paddingLeft: 0}, 300);
}
);
});
I hope that helps...
Dom