问题是第9行:
$(this).animate({opacity:100},10000,null,function(){ //...
不透明度应为"1"(不透明度为0到1之间的值)
$(this).animate({ opacity : 1 }, 10000, null, function() {