$(function() {
	$("#header-inner ul li a").animate({ opacity: 0.80 });
	$("#header-inner ul li a").hover(
		function(){
  			$(this).animate({ opacity: 1 }, 200)
		},
		function () {
        	$(this).animate({ opacity: 0.80 }, 200)
        }
	);
});