$(document).ready(function() {
	var ua = navigator.userAgent;
	if (ua.indexOf("iPhone") > 0) {
		$('#video').html(
			$.create(
				'video',
				{
					width: '350',
					height: '234',
					poster: 'https://s3.amazonaws.com/wordspinmedia/poster.jpg',
					controls: 'controls',
					src: 'video/wordspin.mp4'
				}
			)
		);
	}
	else {
		var videoOptions = {
			id: 'videoObject',
			swf: 'video/player.swf',
			width: '350', 
			height: '234',
			allowfullscreen: 'true',
			allowscriptaccess: 'always',
			wmode: 'window',
			hasVersion: 10,
			flashvars: {
				file: 'https://s3.amazonaws.com/wordspinmedia/wordspin.mp4',
				skin: 'video/modieus.swf',
				image: 'https://s3.amazonaws.com/wordspinmedia/poster.jpg',
				controlbar: 'over'
			}
		};

		$('#video').flash(videoOptions);
	}
});
