jQuery(document).ready(function($) {

	if(is_mobile == 'false'){
		
		var player = flowplayer("player", "http://www.learnwake.com/flowplayer/flowplayer.commercial-3.2.5-1.swf",  {
					clip: {
					url: 'http://www.learnwake.com/public/videos/other/overview.mp4',
					autoPlay: false, 
					autoBuffering: true,
					scaling: 'fit'
				}	
			});
			
		$('#play-video').click(function(e){
			$('#home-slide-overview').attr('id', 'home-slide-overview-video');
			player.play();
			e.preventDefault();
		});
	}

});

