$(document).ready(function() {
	var evil = navigator.appVersion.indexOf("Win") !== -1;
	$.fn.media.mapFormat('mp3', evil ? 'winmedia' : 'quicktime');
	$('#heartbeat').media({
		'autoplay': true,
		'height': 0
	});
	
	$('#prologue').click(function() {
		$(this).media({
			'autoplay': true,
			'width': 216,
			'height': evil ? 45 : 16
		});
		if (!evil) {
			// The QT player looks best at 16px tall; fill in the rest with blank
			// space using margin-top. The WinMedia player can better fit the full
			// height.
			$('#prologue').css({'height': '16px', 'margin-top': '29px'});
		}
		return false;
	});
	
	$('#mute').click(function() {
		$('#heartbeat').remove();
		return false;
	});
});
