function StartSongs() {    jDesktop.LoadApp("apps/songs/startup.js", function() {        _songsStart();    });}function StartChat() {    jDesktop.LoadApp("apps/chat/startup.js", function() {        _chatStart();    });}function StartPlayer() {    jDesktop.LoadApp("apps/player/startup.js", function() {        _playerStart();    });}function ShowLogin() {    jDesktop.LoadApp("apps/login/startup.js", function() {        _loginStart();    });}function StartIntroText() {    var text = '<p>Το site μας είναι υπό κατασκευή! Ευχαριστούμε.</p>';    jDesktop.StartApp(        'IntroHolder',        'Καλώς ήλθατε στο VK Radio!',        '', // no js dependencies        '', // no css dependencies        '', // no app file        {            width : 360,            height : 80,            resizable : false,            minimizable : false,            movable : false,            closable : true,            yPos : 200,            xPos : -1        },        function() {            $('#IntroHolder').find('div.container').css('text-align', 'center').html(text);        }        );}$(document).ready(function() {    // alert();    StartPlayer();    $("#jquery_jplayer_1").jPlayer({        ready : function() {            $(this).jPlayer("setMedia", {                mp3 : "http://88.198.211.213:8000/live"            }).jPlayer("play");        },        ended : function(event) {            $(this).jPlayer("play");        },        swfPath : "/",        supplied : "mp3"    });        $('#loginBtn').mouseover(function() {        var $this = $(this);        $this.find('img').attr('src', '/images/loginHover.png');    });        $('#loginBtn').mouseout(function() {        var $this = $(this);        $this.find('img').attr('src', '/images/login.png');    });        $('#registerBtn').mouseover(function() {        var $this = $(this);        $this.find('img').attr('src', '/images/registerHover.png');    });        $('#registerBtn').mouseout(function() {        var $this = $(this);        $this.find('img').attr('src', '/images/register.png');    });    });
