var $jq = jQuery.noConflict();
$jq(function(){
    function onTickerReceive(tickerHTML) {
        document.getElementById("Ticker").innerHTML = tickerHTML;
	    
	    document.getElementById("Ticker").style.width = String(tickerHTML).length*8 + "px";
        $jq("ul#ticker01").liScroll({travelocity: 0.07}); 
    }
    function onError(XMLHttpRequest, textStatus, errorThrow) {
        // do nothing
    }
    $jq.ajax({
        url: "ticker/ul.html",
        method: "GET",
        dataType: "html",
        success: onTickerReceive,
        error: onError
    });
});

