// DNV script file

// swtich clip by number
function switchClip(id) {
 var pb = $("#player-block"+id);
 
 if (pb.length) {
  $("#player-active").empty().append( pb.clone().show() );   
 }
}

$(function(){
  $(".playersList").prepend('<div id="player-active"></div>');
  var pl1 = $(".playersList .player").hide().eq(0);
  if (pl1.length)
   switchClip( pl1.attr("id").replace("player-block", "") ); 
  
  // menu-target
  $(".menu-target").hover(
   function(){$(this).toggleClass("hover")},
   function(){$(this).toggleClass("hover")}
  );
})
