$(document).ready(function() {
	initializeMenuAnimation();
});

function initializeMenuAnimation(){
	$("#heading menu li a").hover(
		function(){
			if($(this).parent().hasClass("current")) return;
			$(this).animate({ color: '#ff8100' }, 300);
		},
		function() {
			if($(this).parent().hasClass("current")) return;
			$(this).animate({ color: '#757575' }, 300);
		}
	);
};
