/* `Dynamic Loading
----------------------------------------------------------------------------------------------------*/
var codecs = {'mp4':'video/mp4'};
var vid = '';
var playerwidth = '';
var height, width, file, src, poster, a, c, i, p, t, s = '';
var count = 0;

$(document).ready(function() {
	//can this browser play h264
	var video  = document.createElement("video");
	canPlayMP4 = (typeof video.canPlayType === "function" && video.canPlayType("video/mp4") !== "");

	if(!canPlayMP4){
		//go find any html5 video elements
		$("video").each(function(){
			poster = $(this).attr("poster");
			src = $(this).attr("src");
			width = $(this).attr("width");
			
			file = src + "&autostart=false&controlbar=over&image=" + poster;
			height = width/16*9;
			
			//swap them out for flash
			s = '<object height="' + height + '" width="' + width + '" id="videoPlayerWin"><param name="wmode" value="transparent"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="http://multimedia.law.wfu.edu/player.4.2.swf"><param name="FlashVars" value="file=' + file + '"><embed id="videoPlayer" height="' + height + '" width="' + width + '" flashvars="file=' + file + '" name="videoPlayer" src="http://multimedia.law.wfu.edu/player.4.2.swf" wmode="transparent" allowscriptaccess="always" allowfullscreen="true" quality="high" type="application/x-shockwave-flash" /></object>';
			
			$(this).replaceWith(s);
		});
	}
});
