function tab(openTab){
	parent.location.hash = '';
	document.getElementById('splashpage').style.display = 'none';
	document.getElementById('tailspage').style.display = 'none';
	document.getElementById('photographypage').style.display = 'none';
	document.getElementById('aboutpage').style.display = 'none';
	document.getElementById(openTab).style.display = 'inline';
	window.scrollBy(0,0);
}

function parseLink(){
	if(window.location.hash){
	    tab(window.location.hash.substr(1));
	}
}
