$(document).ready(
	function() {
		//get current flash version. returns an array [major, fix] 
		var flash_version = flashembed.getVersion();
		var video_height = $("#video_container").height();
		if (flash_version[0] == 0 || flash_version[0] < 9) {
			$("#video_container")
				.html('<div id="flash_error">You need Adobe Flash Player version 9 or higher to view this video.<br /><br /><a style="color: #0099FF" href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">Click here to Install</a><div>');
			$("#flash_error")
				.css({
					backgroundColor: '#000000',
					color: '#fff',
					fontSize: '15px',
					fontWeight: 'bold',
					height: (video_height - 40) + 'px',
					padding: '20px'
				});
		} 
	}
);
