$(function(){
	$.ajax({
		url: "./common/xml/farmers.xml",
		async: true,
		cache: false,
		dataType:"xml",
		success: function(xml){
				var title = $(xml).find('total').text();
				//alert(title);
				//数字を分解して、画像化
				for (i = 0; i < title.length; i = i +1 ){
					var count = title.charAt(i);
					$('#count').append('<img src="common/img/number/'+count+'.gif" width="47" height="55" alt="'+count+'" />');
				}
		}
	});

});




