$(document).ready(function() {
	$("a").hover(
		function(){$(this).animate({"color":"#eee","backgroundColor":"#0373ff"},300);},
		function(){$(this).animate({"color":"#444","backgroundColor":"#ebebeb"},300);}
	);
	$("p#old").hover(
		function(){$("p#old a").animate({"opacity":"1.0"},300);},
		function(){$("p#old a").animate({"opacity":"0.0"},300);}
	);
});