$(function () {

    $("h1").html(function (i, text) {
        return text.replace(/\w+\s/, function (match) {
            return '<span>' + match + '</span>';
        });
    });
  
    $('#tkr ul').innerfade({
        animationtype: 'fade',
        speed: 750,
        timeout: 4000,
        type: 'random',
        containerheight: '30px'
    });

});
