$(function(){
	$.ajax({
		url:"http://" + window.location.host +"/proxy.iasp2010ddi.com.jsp?bid=enotice", 
		dataType:'xml',
		success:function(xml){
			var title = [];
			var link = [];
			$(xml).find('item').each(function(i){
				title[i] = ($(this).find('title').text());
				link[i] = ($(this).find('link').text());
			});
			var c = 0;
			for( i = title.length-1; i >= 0; i-- ){
				$('#ul_iasp_news').append('<li style="overflow:hidden;width:190px;height:16px"><a href="http://iasp2010ddi.com' + link[i] + '" onclick="window.open(this.href);return false;" title="' + title[i] + '">' + title[i] + '</a></li>');
				c++;
				if( c == 5 ) break;
			}
		},
		error:function (XMLHttpRequest, textStatus, errorThrown) {
			//empty
		}
	});

});
