// JavaScript Document
$(document).ready
(
function()
{
	$("#left_menu .td").hover(
	function()
	{	
		$(this).animate(
			{ 
			backgroundColor: "#FFFFFF"
			}, 10
		);
		$(this).animate(
			{ 
			backgroundColor: "#cccccc"
			}, 300
		);	
	},
	function()
	{
		$(this).animate(
			{ 
			backgroundColor: "#aaaaa0"
			}, 100
		);		
	}
	);	
} 
);
