// JavaScript Document

	
	function updateSectionTitle(sTitle){
		document.getElementById('sectionTitle').innerHTML = (sTitle.length > 0? ' - '+sTitle:'');
	}
	
	if(document.location.href.indexOf('#') > -1){
		show(document.location.href.substring(document.location.href.indexOf('#')+1));
	}
