$(document).ready(function(){

	$("li a").hover(
		function()
		{
      		$(this).animate( {marginRight: "5px", opacity: 1 }, 200);
      	},
      	function()
      	{
      		$(this).animate( {marginRight: "0px", opacity: 0.5 }, 200);
      	}
    );
});