I know I am supposed to use $(selector).stop().animate(); somewhere but I am not sure how I can stop the lag when you go off and on it really fast it will keep animating. Here is my code, if you could tell me what to put I would be set (keep in mind I am a beginner with jquery).
$(document).ready(function(){
var order = $('#order').mouseenter(function(){
$('#animateorder').animate({top: '+=5.5em'}, 'fast')
});
var order2 = $('#order').mouseleave(function(){
$('#animateorder').animate({top: '-=5.5em'}, 'fast')
});
});
$(document).ready(function(){
$('#contact').mouseenter(function(){
$('#animatecontact').animate({top: '+=5.5em'}, 'fast')
});
$('#contact').mouseleave(function(){
$('#animatecontact').animate({top: '-=5.5em'}, 'fast')
});
});