/*
 * callback.js for jack4flash 0.93
 *
 * Copyright (c) A&B FACE2NET GmbH
 * author Jana Deutschlaender
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 */

/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* player callback */
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */

var playerReadyCallback = function(obj){
  try {
    var player;
    player = $("#"+obj.id);
    player.each(function (){
      jQuery.addListeners(this);
      jQuery.setControls(this);
      jQuery.loadVideo(this);
    }); 
  } catch (err){
    
  }
};


