実際、jqueryを使用して高さを上げたり下げたりするアニメーションを遅くしたかったのですが、.css()を使用してdiv.Plsヘルプの高さを上げ下げしています
<script>
$(document).ready(function(){
$(".stickyfooter2").css({'height': '60px'});
$('.stickyfooter2').mouseover(function(){
$(".stickyfooter2").css({'height': '200px'});
});
$('.stickyfooter2').mouseleave(function(){
$(".stickyfooter2").css({'height': '60px'});
$(this).fadeIn('fast');
});
});
</script>