$(document).ready(function() {

	$('.news_post').hover(function(){
			$(this).css('background-color', '#edf4fa'); 
		},function(){
			$(this).css('background-color', '#fff');
	});
	
	$('.news_post').click(function(){
		
	});
	

	
	
});
