// JavaScript Document

function play_video(vid_name)
{

	$('#video_popup').show();

	jwplayer('video_container').setup({
		'flashplayer': 'http://www.coram.org.uk/assets/videos/player.swf',
		'file': 'http://www.coram.org.uk/assets/videos/'+vid_name+'.f4v',
		'controlbar': 'bottom',
		'width': '1000',
		'height': '650',
		'autoplay': 'true'
	  });
	
}

function close_video()
{

	$.jwplayer().stop();
	$('#video_popup').hide();

}
