// Google function
function FlashRequest(status, args) {
  if ((status == "goFullscreen")
      || (status == "donePlaying")
      || (status == "stateChanged")
      || (status == "beginScrub")
      || (status == "endScrub")) {
    if (this[status]) {
      var argvector = eval('[' + args + ']');
      this[status].apply(this, argvector);
    }
  } else if (status == "clickVideo") {
    doThumbPreviewClick();
  }
}

// do on load
$(document).ready(function(){
	// Create a tabbed interfaces
	$('div#browsers').tabs();
	
	// Round off some corners
	$('ul#vidNav a').corner('round 5px');
	$('ul.anchors a').corner('round top 5px');
	$('div.fragment').corner('round tr br bl 5px');
});