$(document).ready(function(){
	$("#concerts ul li a").bind("mouseenter" , function(){
		$(this).stop().animate({backgroundColor: '#f3f3f3'}, 150);
	});
	$("#concerts ul li a").bind("mouseleave" , function(){
		$(this).stop().animate({backgroundColor: '#ffffff'}, 500);
	});
});
