1$('.picture').each(function(){
2 $('.picture').hover(function(){
3 $('.picture span').animate({
4 'padding-top' : '20px'
5 },'fast');
6 });
7
8 $('.picture').mouseout(function(){
9 $('.picture span').animate({
10 'padding-top' : '10px'
11 },'fast');
12 });
13});
14