/*
 JSバナー用画像読み込み（XML）
*/
$(function() {
	$.ajax( {
		url: "home/swf/xml/content.xml",
		type: 'GET',
		success:function(data) {
			var $ul = $("<ul id=\"rotation\"/>");
			
			$(data).find("img").each(function() {
				if($(this).attr("number") == "1"){
					var $book = $(this);
					$ul.append($("<li/>").append("<img src=\"./home/swf/"+$book.attr("src")+ "\" />"));
				}
			});
			$ul.appendTo("#result");
		}
	});

});

