
function loadVideo(vid,shareurl)
{
	html5 = false;
	if (supports_h264_baseline_video()) //iphones - use HTML 5
	{
		if(vid == 'video1')
		{
			file = '/flv/tony-story-2-web-hq.mov';
		}
		else if(vid == 'video2')
		{
			file = '/flv/dtb-overview-v1-web-720.mov';
		}
		else if(vid == 'video3')
		{
			file = '/flv/dtb-1-min-teaser-final-1.mov';
		}
		$('#interior-content').append('<div id="html5_placeholder"></div>');
		
		html5 = true;
		
		$.prettyPhoto.open('#html5_placeholder','','<div id="html5_inject"></div><div id="inject_links"></div>');
		
		$('#html5_inject').html('<video width="676px" height="405px" autobuffer="autobuffer" controls="controls" src="' + file + '"></video>');
	}
 	else //standard browsers - use flash
	{
		if(vid == 'video1')
		{
			file = '/flv/tony-story-2-web-hq.flv';
		}
		else if(vid == 'video2')
		{
			file = '/flv/dtb-overview-v1-web-720.flv';
		}
		else if(vid == 'video3')
		{
			file = '/flv/dtb-1-min-teaser-final-1.flv';	
		}
		
		if($.browser.msie)
		{
			target = '/flv/Main.swf?height=405&width=676&flashvars=file='+ file + '&provider=http';
		}
		else
		{
			target = '/flv/Main.swf?height=405&width=676&flashvars=file='+ file;
		}
		$.prettyPhoto.open(target,'','<div id="inject_links"></div>');
	}
	
	$('#inject_links').html($('#share_links').clone());
	
	addthis.toolbox("#inject_links", {}, {url: shareurl, title: "Discover The Bible Videos", description: "Discover The Bible Videos"});
	//addthis.button(".addthis_button_facebook_like",{},{url: shareurl});
	//addthis.button(".addthis_button_tweet",{},{url: shareurl});
}

function supports_h264_baseline_video() {
  if (!supports_video()) { return false; }
  var v = document.createElement("video");
  return v.canPlayType('video/mp4; codecs="avc1.42E01E, mp4a.40.2"');
}

function supports_video() {
  return !!document.createElement('video').canPlayType;
}
