
$(".m_tag").bind("mouseenter", function(e) {
	$(this).stop(true, true).animate({height:"143px"}, 200);
});

$(".m_tag").bind("mouseleave", function(e) {
	$(this).animate({height:"43px"}, 250);
});