
$(document).ready(function() {
	
	$(document).find('.news-home-element').each(function(i) {
		
		
		
		$(this).hover(function() {
			
			$(this).find('.news-text').stop(true, true).fadeIn(300);
			
		}, function() {
			
			$(this).find('.news-text').stop(true, true).fadeOut(300);
			
		});
		

		
	});
	
})
