$(function(){
	//V
	$.ajax({
	    url: '/xml/new_data.php',
		cache : false,
	    dataType: 'xml',
	    success : function(data){
	        	str = '';
			$("Item",data).each(function(){
				str = str + "<dl class=clearFix><dt><a href='http://www.livex-inc.com"+$("Link",this).text()+"'><img src='/main_img/"+$("Image",this).text()+"' width='48' height='63'></a></dt><dd>"+$("Comment",this).text()+"</dd></dl>";
			});

			$("#newbox").append(str);
			$("#newbox").removeClass('loder');
	    }
	});
});
