$(document).ready(function() {
	//	alert('ready');
	
	$('#wrapper #header ul li a, #wrapper #footer ul li a').hover(
		function() {
			$(this).stop().animate({'color' : '#990000'});
		},
		function() {
			$(this).stop().animate({'color' : '#666666'});
		}
	);

});
