// ----------------------------------------
// Sheezy Javascript
// ----------------------------------------
//
// 
//
// ----------------------------------------
// Copyright © Michael Hill 2006
// ----------------------------------------

var content = {
	padding: ((navigator.userAgent.indexOf("MSIE 6")!=-1) ? 4 : 0),
	lastSize: '',
	stretch: function(){
		$('content').style.height = 'auto';
		var bodyHeight = $('wrapper').offsetHeight;
		var windowHeight = document.documentElement.scrollHeight;
		
		if(bodyHeight < windowHeight) {
			var contentHeight = $('content').offsetHeight;
			var goalHeight = windowHeight-(bodyHeight-contentHeight)-content.padding;

			$('content').style.height = goalHeight+'px';
		}
		content.setSize();
	},
	setSize: function(){
		content.lastSize6 = $('content').offsetHeight;
	},
	checkSize: function(){
		if(content.lastSize != $('content').offsetHeight) {
			content.stretch();
		}
	},
	attach: function(){
		setInterval('content.checkSize();', 1000);
		window.onresize = content.stretch;
		content.stretch();
	}
}


