$(function(){
	$.ajax({
    url: '/xml/notice.xml',
    type: 'GET',
    dataType: 'xml',
    timeout: 1000,
    error: function(){
        alert('Error loading XML document');
    },
    success: function(xml){
		if($(xml).find('entry').text()==''){
			$('#notice').css('display','none');
		}else{
		$(xml).find('entry').each(function(){
	        var title = $(this).find('title').text();
			var url = $(this).find('url').text();
			var newNum = $(this).attr('new');
			var newIcon;
			if(newNum!=0){
				newIcon = '<img src="/share/notice/images/noticeslide_icon_new.gif" alt="NEW" width="30" height="15" />';
			}else{
				newIcon = '';
			}
			$('#notice ul').append('<li><a href="'+url+'">'+title+'</a>'+newIcon+'</li>');
			$('#notice li:gt(0)').css('background','url(/share/notice/images/notice_dotline_w.gif) repeat-x');
    	});
		}
	}
	});
});
