$(document).ready(function(){
var f_color = '';
$("a.structure").hover(function() {
f_color = this.style.color;
$(this).animate({ backgroundColor: "#eae999", color: "#99bfea" }, 700);
},function()
{
$(this).animate({ backgroundColor: "white", color: f_color }, 200);
});
});
