window.onload = initForm;
window.onunload = function() {};

function initForm() {
	document.getElementById("newLocation").selectedIndex = 0;
	document.getElementById("newLocation").onchange = jumpPage;
}

function jumpPage() {
	var newLoc = document.getElementById("newLocation");
	var newPage = newLoc.options[newLoc.selectedIndex].value;

	if (newPage != "") {
		window.location = newPage;
	}
}

	function dolandna()
		{
			alert("The mission of the DNA Learning Center is to prepare students and families to thrive in the gene age.");
		}


		function printpage()
		{
			window.print();
		}
		$(function() {
			$( "button, input:submit, a", ".nav" ).button();
			$( "a", ".nav" ).click(function() { return false; });
		});
		$(function() {
			$( "#tabs" ).tabs({
				ajaxOptions: {
					error: function( xhr, status, index, anchor ) {
						$( anchor.hash ).html(
							"Could not load this tab. We'll try to fix this as soon as possible." );
					}
				}
			});
		});
		$(function() {
			$( "#dialog" ).dialog();
		});
