$(document).ready(function(){

 $("#menu li:last").css({border: 'none'})
 $("#footer-menu li:last").css({border: 'none'})

               
 $("#menu li a").hover(function() {
                $(this).animate({ marginLeft : "5px" }, 150);
        },function() {
                 $(this).animate({ marginLeft : "0px" }, 110);
        });
 
  $("#footer-menu li a").hover(function() {
                $(this).animate({ marginLeft : "5px" }, 150);
        },function() {
                 $(this).animate({ marginLeft : "0px" }, 110);
        });
 
 $("ul.blogroll li ").hover(function() {
                $(this).animate({ marginLeft : "5px" }, 150);
        },function() {
                 $(this).animate({ marginLeft : "0px" }, 110);
        });


});

		
  