﻿function toggleAudioPlayer()
{
    if (!top.audio_player_frame)
    {
        top.location.href = "/index_player.htm?main=" + window.location.href;
    }
    else
    {
        top.location.href = top.main.location.href;
    }
}


$(document).ready(function(){
    var showText;

    if (top.audio_player_frame)
    {
        showText = "close music player";
    }
    else
    {
        showText = "open music player";
    }
    $('a.music_box_toggle').text(showText);
});

