$(function(){
	$.ajax({
    url: '/jp_stone/banne_lp.xml',
    type: 'GET',
    dataType: 'xml',
    timeout: 1000,
    error: function(){　},
    success: function(xml){
        $(xml).find("row").each(function(){if(xml){ 
 var item_text = "<div class='banner-area'>"+ $(this).text() + "</div>"; 

            $("<div></div>")
                .html(item_text)
                .appendTo('div.banner-box'); }
        });

    }
    });
});
