$(document).ready(function()
{
	
	//$("a").css ( { backgroundColor: "#FFFFFF", color : "#333333", borderBottom : "1px solid #000000" } );
	
	$("a").mouseover(function()
	{
		$(this).stop();
		var oldCol = $(this).css ( "color" );
		
		$(this).css ({ backgroundColor: "#FFFFFF", color: "#FFFFFF" });
		$(this).animate ({ backgroundColor: "#FFFFFF", color: oldCol }, "fast");
		
	});
	

	
	
});