$(document).ready(function() {
	$("#box_s1").mouseenter(function(){
	  $(this).animate({ backgroundColor: '#2e2e2e' }, "fast");
	});
	$("#box_s1").mouseleave(function(){
	  $(this).animate({ backgroundColor: '#577ac5' }, "fast");
	});
});

$(document).ready(function() {
	$("#box_s2").mouseenter(function(){
	  $(this).animate({ backgroundColor: '#2e2e2e' }, "fast");
	});
	$("#box_s2").mouseleave(function(){
	  $(this).animate({ backgroundColor: '#3d3d3d' }, "fast");
	});
});

$(document).ready(function() {
	$("#box_s3").mouseenter(function(){
	  $(this).animate({ backgroundColor: '#2e2e2e' }, "fast");
	});
	$("#box_s3").mouseleave(function(){
	  $(this).animate({ backgroundColor: '#3d3d3d' }, "fast");
	});
});
