// Required for Opera to display the MP4 video.
// Removes take the <video> and <source> elements
// from the DOM, but keeps the other children of
// the <video> tag. In this case, it retains the
// <a> tag which will be used for the Flowplayer.
function fallback(video) {
 while (video.firstChild) {
   if (video.firstChild instanceof HTMLSourceElement) {
     video.removeChild(video.firstChild);
   } else {
     video.parentNode.insertBefore(video.firstChild, video);
   }
 }
 video.parentNode.removeChild(video);
 fixForOpera();
}
 
// Places a Flowplayer Flash player into the item with ID "player".
function fixForOpera(){
//flowplayer("player","swf/flowplayer-3.2.2.swf");
}


