$(document).ready(function()
{// Your code here
      
   $("#navigation-container a").hover(function() {
	 $(this).stop().animate({color: "#e70698"}, 600);
},
function() {
$(this).stop().animate({color: "#7d7c7c"}, 600);
});
   
});



