

	window.onload = loadPage;

	function loadPage () {
	
		if(window.location.pathname == '/peterson/services.php'){
		
			changeBox(1);
		
		}
		positionSocialBox();
		
		return false;
	
	}
	
	function positionSocialBox () {
	
		var pageHeight = document.getElementById('wrap').offsetHeight - 300; //wrap height minus header height - footer height - offset of social box
		var navigationHeight = document.getElementById('navigation').offsetHeight;
		
		document.getElementById('social_box').style.marginTop = pageHeight - navigationHeight + "px";
	
		return false;
	
	}
	
	
