/**
 * @author Yanger Changkier
 * news/news-snippets.js
 */
$(document).ready(function(){
	$.getJSON('news/index.php?get_headlines',
		function(data){
			$('#news-loader').remove();
			$.each(data, function(){
				$('#news-container .innertube').append(
						'<div class="news-item">' +
						'<div class="headline">'+
						'<a href=news/read-news.php?nid='+this.id+'>'+
						this.headline +
						'</a></div>'+
						'</div>'
				);
			});
		});
});

