jQuery(document).ready(function() {
	
	jQuery('.header .menu li.not_current a').hover(function() {
		jQuery(this).animate({"color": "#9F3131"}, {duration: 800, queue: false});
	}, function() {
		jQuery(this).stop().animate({"color": "#CCC"}, {duration: 800, queue: false});
	});
	jQuery('.document.box .column.small .part.link a,.document.box .column.tiny .part.link a').hover(function() {
		jQuery(this).animate({"backgroundColor": "#ab1d19"}, {duration: 800, queue: false});
	}, function() {
		jQuery(this).stop().animate({"backgroundColor": "#999999"}, {duration: 800, queue: false});
	});
})
