$(document).ready(function() {
	var selectSermonMonth = $("#selectsermonmonth");
	var initiallySelectedItem = $("#selectsermonmonth").val();

	selectSermonMonth.change(function() {
		var selectedItem = $(this).val();
		if (initiallySelectedItem != selectedItem) { // Workaround for Safari Mac double-click on scroll bar/arrows bug after initial page load
			location.href = '/worship/audio-archive' + selectedItem +'/';
		}
	});
});