// JavaScript Document
$(document).ready(function() {
 $("#nav a").hover(function () {
$(this).stop().animate({ left: "7" }, "fast"); },
function () {
$(this).stop().animate({ left: "0" }, "medium");
}); 
}); 
