$(function(){
  $(".menu_selectable").mouseover(function(){
			 $(this).stop().animate({ color: "#000000" }, 300)
		})
		.mouseout(function(){
			$(this).stop().animate({ color: "#969696" }, {duration:300, complete:function(){
				$(this).css({ color: "#969696" })
			}})
		})
/*$("a").hover(function() {
      $(this).stop().animate({ color: "#000000" }, 300);
  },function() {
      $(this).stop().animate({ color: "#969696" }, 300);
  });*/
});
