$().ready(function() {
	// Set the selected option from the dropdown box
	var isGallery = false;
	$(".select_newpage").find("option").each(function(){

		if(location.href.indexOf("Galleries") != -1) {
			// Split on "." to remove any file extensions
			var temp = new Array();
			temp = $(this).val().split("/");
			var galleryPath = temp[2];
			var exhibitPath = temp[1];
			isGallery = true;

			if(exhibitPath == "Galleries" && location.href.indexOf(galleryPath) != -1) {
				$(this)[0].selected = true;
			}
			if(exhibitPath != "Galleries" && location.href.indexOf(exhibitPath) != -1) {
				$(this)[0].selected = true;
			}
		}
	});

	// Use the value of the selected option to load a new page on change
  $('.select_newpage').change(function() {
	  if( $(this).val() != "none") {
		  var thePage = $(this).val();
		  if(!isGallery) $(".select_newpage").find("option")[0].selected = true;
		  window.location.href = thePage;
	  }
	});
});