$(document).ready(function(){	
	jQuery("ul li.ac").hover(function() {
		jQuery(this).siblings().children('a').stop().animate({color: '#028AE4'}, 500);
	}, function() {
		jQuery(this).siblings().children('a').stop().animate({color: '#FFFFFF'}, 500);
	});
});
