$(document).ready(function() {
	$(".news-item").mouseover(function() {
		$(this).css("background", "#F4F4F4");
	});

	$(".news-item").mouseout(function() {
		$(this).css("background", "white");
	});
});
