﻿// ------------------------------------------------------------ Document Ready

$(document).ready(function()
{                     
    /*
     * Styling and effects
     */
    
    $("#TodayProgrammeWrapper .row").mouseenter(function()
    {
        $(this).css("background-color","#323232");
        $(this).css("height","30px");              
    });

    $("#TodayProgrammeWrapper .row").mouseleave(function()
    {
        if (!$(this).hasClass("selected"))
        {
            $(this).animate({ backgroundColor: "Black" }, 800);
            $(this).css("height","15px");              
        }
    });

    /*
     * Get and publish Playlist and Today's Programme
     */

    jPLogic.channelNames = [ 'Salsa4te' ];
    jPLogic.ajaxRequestURL = 'localhost';
    jPLogic.useProxy = true;
    jPLogic.proxyDomainURL = 'http://www.radiomusic.net';
    jPLogic.pictureHOST = 'http://www.radiomusic.net';
    jPLogic.maxQueue = 4;
    //jPLogic.sourceDelay = 16;
    
    StartRegiaUpdate();     

    StartProgrammeUpdate();
});
