$(document).ready(function() {
	$('#qualityControl').toggle(
		function() {
			$('#webcast').load('/includes/media/jw-low.php');
			$('#qualityControl').html('Normal Quality');
		},
		function() {
			$('#webcast').load('/includes/media/player.php');
			$('#qualityControl').html('Low Quality');
		}
	);
	$('#refreshPlayer').click(function() {
		if ($('#qualityControl').html() == 'Low Quality') {
			$('#webcast').load('/includes/media/player.php');
		} else {
			$('#webcast').load('/includes/media/jw-low.php');
		}
		return false;
	});
	$('#toggleChat').toggle( 
		function() { $('#chat').remove(); $('#toggleChat').removeClass('hideChat').addClass('showChat').html('Show Chat'); },
		function() { $('#rightGrid').append('<iframe frameborder="0" id="chat" src="http://chat.churchofthehighlands.com"></iframe>'); $('#toggleChat').removeClass('showChat').addClass('hideChat').html('Hide Chat') }
	);
});
