I'm trying to get this to ease when it moves, but it doesn't seem to work..
$('#aboutlnk').hover(function(){
$('#navul').animate({
left: '753px',
width:'75px'
}, {
duration: 300,
easing:'easeOut'
});
});
Also, how do I stop the code from running over and over again, for example if I hover over the same thing 100 times it will keep replaying 100 times...! Thanks!