Your animations are queuing up. To prevent this, use the jQuery stop function: http://api.jquery.com/stop/
I updated your code to include the use of the stop function. It now works for me. Here is the updated code:
<script type="text/javascript">//<![CDATA[
$(window).load(function(){
$('#blue-top').mouseenter(function(){
$('#blue-top').stop(true).animate({height:'200'}, 500);
$('#blue-middle').stop(true).animate({height:'80'}, 500);
$('#blue-bottom').stop(true).animate({height:'80'}, 500);
});
$('#blue-top').mouseleave(function(){
$('#blue-top').stop(true).animate({height:'120'}, 500);
$('#blue-middle').stop(true).animate({height:'120'}, 500);
$('#blue-bottom').stop(true).animate({height:'120'}, 500);
});
$('#blue-middle').mouseenter(function(){
$('#blue-top').stop(true).animate({height:'80'}, 500);
$('#blue-middle').stop(true).animate({height:'200'}, 500);
$('#blue-bottom').stop(true).animate({height:'80'}, 500);
});
$('#blue-middle').mouseleave(function(){
$('#blue-top').stop(true).animate({height:'120'}, 500);
$('#blue-middle').stop(true).animate({height:'120'}, 500);
$('#blue-bottom').stop(true).animate({height:'120'}, 500);
});
$('#blue-bottom').mouseenter(function(){
$('#blue-top').stop(true).animate({height:'80'}, 500);
$('#blue-middle').stop(true).animate({height:'80'}, 500);
$('#blue-bottom').stop(true).animate({height:'200'}, 500);
});
$('#blue-bottom').mouseleave(function(){
$('#blue-top').stop(true).animate({height:'120'}, 500);
$('#blue-middle').stop(true).animate({height:'120'}, 500);
$('#blue-bottom').stop(true).animate({height:'120'}, 500);
});
});//]]>
</script>