$(function(){
	$.ajax({
    url: '/jp_stone/banne.xml',
    type: 'GET',
    dataType: 'xml',
    timeout: 1000,
    error: function(){　},
    success: function(xml){var img=1;
        $(xml).find("row").each(function(){if(xml){ 
										 
										 var item_text = "<h2><img src='/jp_stone/index/img/bn_ttl"+ img +".png' alt='' width='272' height='28' /></h2><div class='banner-area'>"+ $(this).text() + "</div>"; img++;

            $("<div></div>")
                .html(item_text)
                .appendTo('div.banner-box'); }
        });

    }
    });
});
