Use .stop(): http://api.jquery.com/stop
$('.div_1').mouseover(function(){
$(this).stop().animate({'height':'200px'},2000);
}).mouseout(function(){
$(this).stop().animate({'height':'100px'},2000);
});
Notice you can chain the event binding functions instead of selecting .div_1 twice in a row.
Here is a demo: http://jsfiddle.net/EVZVQ/1/
When .stop() is called on an element, the currently-running animation
(if any) is immediately stopped. If, for instance, an element is being
hidden with .slideUp() when .stop() is called, the element will now
still be displayed, but will be a fraction of its previous height.
Callback functions are not called.
Source: http://api.jquery.com/stop
Update
You can stop all the divs at once like this (but I'm not sure this is the effect you're looking for):
var $divs = $('.div_1');
$divs.mouseover(function(){
$divs.stop().filter(this).animate({'height':'200px'},250);
}).mouseout(function(){
$divs.stop().filter(this).animate({'height':'100px'},250);
});
Here is a demo: http://jsfiddle.net/EVZVQ/2/