pax.load.onloaded( function() {
	pax.plugin.widget.video.init( pax.$('myVideo'), { url: 'http://www.youtube.com/watch?v=oHg5SJYRHA0' } );
	//	Get all anchors with  class='videoLink', and link them to set the video embedding...
	var list = pax.util.getElementsByClassName( document, 'a', 'videoLink' );
	for( var i in list ) {
		//	Note: binding the mousedown instead of the click prevents following the link.
		pax.event.bind( list[i], 'mousedown', function( e ) {
			pax.plugin.widget.video.init( pax.$('myVideo'), { url: this.title } );
		} );
	}
} );
