$(function () {

	
	$.fn.media.defaults.flvPlayer = '../videos/mediaplayer.swf';
	
	if($('#content .media').length)
	{
		$('#content .media').media({
			width: 520,
			height: 340,
			flashvars: {
				autostart: 'true'
			},
			params: {
				allowfullscreen: 'true'
			}
		});
	}

});