$(document).ready(function(){
	function instantiate_video(ele_id, location)
	{
		var version = flashembed.getVersion();
		var supports = flashembed.isSupported([9, 115]);
		if (supports) {
			$f(ele_id, 'http://www.outso.com/js/flowplayer-3.0.3.swf', {
				clip: {
					url: location,
					onBeforeFinish: function() {
						return false;
					},
					autoPlay: true
				},
				plugins: {
					controls: {
						all:false,
						scrubber:true,
						play:true,
						mute:true
					}
				}
			});
			$f(ele_id).play();
		}
		else {
			flashembed('advertTop', 'http://www.outso.com/js/expressinstall.swf');
		}
	}
	jQuery('#play_burgerman').click(function()
	{
		instantiate_video('play_burgerman', 'http://www.outso.com/files/Burger_tat_small.mp4');
	})
});
