$(function(){
	$(".1").mouseover(function(){
		$(this).css('background','#d9ecf9');
	}).mouseout(function(){
		$(this).css('background','#ffffff');
	});
});
