window.onload=function() {

	// make the H1 clickable for the home page.....
	var ref=document.getElementById('mainLogo');
	ref.onclick=function() {
		location.href="/";	
	}
	
	// make the H3 click back to the base of services, if we click on it.
	if (location.href.indexOf('services')>0) {
		var ref=document.getElementById('sectionName');
		ref.style.cursor="pointer";
		ref.onclick=function() {
			location.href="/services/";	
		}
	}
	
	// set up fancyzooms, even though they seem rather slow.
	setupZoom();
}