// JavaScript Document

onload=function () {
	
	var h;
	var t;
	var CM;
	var final;
	
	// determine content hight 
	
	t = getT('home-back');
	h = getH('home-back');

	// determine where to place footer
	CM = getS('footer')
	CM.top = h + 174 + 'px';
	CM.display = 'block';
	
	// determine where to start bottom of body
	h = getH('footer');
	t = getT('footer');
	
	// determine height of container
	final = h + t;
	CM = getS('container');
	CM.height = final + 'px';
	
	
}

