$(function() {
	$("#video").each(function() {
		var href = $(this).attr('href');
		$(this).replaceWith(
		'	<a href="' + href + '" style="display:block;width:660px;height:368px" id="video"></a>' + 
		'	<script type="text/javascript" src="/flowplayer/flowplayer-3.2.4.min.js"></script>' + 
		'	<script type="text/javascript">' + 
		'		flowplayer("video", "/flowplayer/flowplayer-3.2.5.swf", { clip:  { autoPlay: false } });' +
		'	</script>');
	});
});

$(function() {
	$("a.flowplayer-video").each(function() {
		var href = $(this).attr('href');
		$(this).replaceWith(
		'	<a href="' + href + '" style="display:block;width:660px;height:368px" class="flowplayer-video"></a>' +
		'	<script type="text/javascript">' +
		'		flowplayer("a.flowplayer-video", "/flowplayer/flowplayer-3.2.5.swf", { clip:  { autoPlay: false } });' +
		'	</script>');
	});
});

