/* Author: 
	J. Hite Billes
*/

// Navigate to the selected page in the form select menu
$("#select_nav1 select").change(function() {
	var theUrl = $("#select_nav1 select option:selected").val();
	if (theUrl != ""){
		location.href = theUrl;
	}
});

$("#select_nav2 select").change(function() {
	var theUrl = $("#select_nav2 select option:selected").val(); 
	if (theUrl != ""){
		location.href = theUrl;
	}
});








