$(document).ready(function() {

	$("#leftSideBar ul li a").hover(function() {
			$(this).animate( {backgroundColor: "#333333"}, {duration: 1000} )
		}, function() {
			$(this).stop().animate( {backgroundColor: "#000000"}, {duration: 1000} )
		});
	

});
