$(document).ready(function(){
	$("a[class='manual']").hover(function(){
		$(this).animate({borderWidth: "10px", backgroundColor: '#EA8630', color: '#FFFFFF'},500)
	}, function(){
		$(this).animate({borderWidth: "2px",backgroundColor: '#F8F8F8', color: '#666666'},500)
	});
});