I am setting up a page that uses css to stylize the playlist. I am running into a problem. I need to set up some eventListeners -- which can't be done until the player has been fully-instantiated. Normally, I just have a playerReady function in my html page to handle that.
The problem I have is that the javascript files provided by lontailvideo to enable playlist stylizing via css define playerReady. I don't want to alter the code in the .js files they supply because the eventListener setup will vary from page to page.
Any ideas on how I can have playerReady defined in my html page without interfering with the playerReady defined in the longtailvideo .js files
Thanks,
Edward
p.s. I searched through the forum and couldn't find a solution.

You don't need playerReady() at all. It's just a convenience function.
If you want to add Listeners as soon as the player is ready, it's best to check for the availability of the playlist because you can't do anything until the player has finished loading and indexing the playlist.
A simple loop to get the player reference object, then the playlist — repeat if it fails — is all you need.