function load() {
	if ( document.getElementById ) {
		var p = new Poly9.URLParser(document.location.href); // parse the url, get the fragment after '#'
		if (window.tabs) {
			loadTabs();  // unload all tabs
			if (p.getFragment()) {
				swap(p.getFragment()); // load the result
//				alert(p.getFragment());
			}
			else {
				swap(tabs[0][0]);
			}
		}
		nudgeNav();
	}
}

function nudgeNav() {
	var logoH = 140;
  var nav = document.getElementById('nav');	
	var offset = logoH - nav.clientHeight;
	nav.style.top = offset - 2  + "px";
}
