
sections = new Array( "management","publishing","press","credits");

switch_section = function( section ) {

	for( var i in sections ) {
		document.getElementById( sections[i] + "_div" ).style.display = "none";
	}
	if( !section ) {
		document.getElementById( sections[0] + "_div" ).style.display = "";
	} else {
		document.getElementById( section  + "_div" ).style.display = "";
	}
}

page = function() {
	switch_section("press");
	if( window.location.href.indexOf("short_bio") != -1) {
		
		setTimeout(short_bio, 1000);
	}
}

short_bio = function(){
	window.location.hash = "short_bio";
}