// Run the script on page load.

	// If using jQuery
	// $(function(){
	//   VideoJS.setup();
	// })

	// If using Prototype
	// document.observe("dom:loaded", function() {
	//   VideoJS.setup();
	// });

	// If not using a JS library
	window.onload = function() {
		VideoJS.setup();
	}
