$(document).ready(function(){
	
	// clear other calendar dropdown		   
	$('#calendarlinks').find('option:first').attr('selected', 'selected').parent('select');
	$("#calendarlinks").change(function() {
		window.location = "http://www.northwestu.edu" + $(this).val();
	});
 });

