$(document).ready(function(){
	initNews();
});

function initNews(){
	var now = new Date();
	var url  = "/news/buzzList.aspx?nocache=" + now.getTime();
	$.get(url, function(data) {
		var news = $("li:first",data);
		$("img",news).remove();
		$(".itemList").html(news);
	});
}
