animate example
HTML
<!-- Animate example-->
<div id="move"></div>
CSS
#move{
position:absolute;
height:50px;
width:50px;
background-color:green;
}
JavaScript
<!-- moves div 400px to right-->
$( "#move" ).animate({ "left": "+=400px" }, 5000);