function SetUpSundaySeries() {
    $(".recording .play")
        .click(function() {
            m = $(this).attr("value") + ".mp3";
            SetRecordingInPlayerAndPlay(m);
        });
}

$(document).ready(function() {
    createPlayer("mp4", "320", "340", "100", "/download/mp4/playlist.xml");

    Load2WeekDiaryAndDisplay();
    LoadLastestMp3AndCreatePlayer("200");
    LoadLastest5mp3sAndDisplay();
    LoadLastest5NewsAndDisplay();
    LoadLastestPrayDiaryAndDisplay();
    SetUpSundaySeries();
});
