﻿/*
 * leadXML>>>append news
 */

// xmlファイル読み込み
function get_telop(){
    $.ajax({
        url:"http://www.motherfarm.jp/telop.xml",
        type:"get",
        dataType:"xml",
        timeout:3000,
        success:parse_telop
    });
}

// xmlファイル読み込み
function get_telop_https() {
    $.ajax({
        url: "https://www.motherfarm.jp/telop.xml",
        type: "get",
        dataType: "xml",
        timeout: 3000,
        success: parse_telop
    });
}

// xmlデータ解析
function parse_telop(xml,status){

	if(status != "success") {
		$("#ticker").append(
			'<li>マザー牧場オンラインショップ　厳選された素材をもとにおいしさを追求したマザー牧場製品を牧場直送でお届けします！</li>' 
		);
	}
	else {
		$(xml).find("TELOP").each(function() {
			$("#ticker").append(
				'<li>' + $(this).text() + '</li>'
			);	
		});
	}
	
	/*$(function() {*/
       	$("#ticker").jStockTicker({interval: 25}); 
    	/*});*/
}

