function animateTextTiles(){
$('article').hover(function(){
$('.description', this).stop().transition({marginTop:'60px'}, 150);
}, function(){
$('.description', this).stop().transition({marginTop:'190px'}, 100);
});
}
into a separate function with different parameters.
But everything i wrote had the effects that it crashed or that every description was moving.