$(document).ready(function () {
  $('#artistsMenuTitle').hover(function () {
    $('#artistsGenreLIs').show();
  }, function () {
    $('#artistsGenreLIs').hide();
  });
  
  var globalPlayerPageSongs = '';
  $(':hidden.jsPlayerSongID').each(function () {
    globalPlayerPageSongs += (globalPlayerPageSongs == '') ? '' +this.value+ '' : ',' +this.value+ '';
    /*
    if (globalPlayerPageSongs == '') {
      globalPlayerPageSongs = '' +this.value+ ''
    }
    else
      globalPlayerPageSongs += ', ' +this.value+ ''*/
  });
  init_player_items('' +globalPlayerPageSongs+ '');
  
});