function favorite_load(){
	$("#favorite").empty();
	$.ajax({
		 url: '/xml/favorite_data.php',
	    dataType: 'xml',
		cache:false,
		success : function(data){
			//取得したファイルに対する処理
			//rows = $("Rows",data).text();
			str = '<ul>';
			i = 1;
			var no_list = true;
			$("Item",data).each(function(){
				if($("url",this).text()){
					str = str + "<li><a href='"+$("url",this).text()+"'>"+$("name",this).text()+"</a></li>";
				}else{
					str = str + "<li>"+$("name",this).text()+"</li>";
				}
				no_list = false;
				i++;
			});
			str += '</ul>';
			
			var login = $("login",data).text();
			$("#favorite_btn").empty();
			if(login == 1){
				$("#favorite_btn").append("<a href='https://www.livex-inc.com/mypage/'><img src='/common/img/btn_favorid.jpg' alt='お気に入り物件を全て見る' width='172' height='30' class='imgCenter' /></a>");
			}else{
				$("#favorite_btn").append("<a href='http://www.livex-inc.com/favorite/'><img src='/common/img/btn_favorid.jpg' alt='お気に入り物件を全て見る' width='172' height='30' class='imgCenter' /></a>");
			}
			if(no_list == true){
				$("#favorite").removeClass();
			}else{
				$("#favorite").addClass("list");
			}
			$("#favorite").append(str);
			$("#favorite").removeClass('loder');
	    }
	});
}
