// JavaScript Document
var SITE = {
	init: function() {
		// do nothing
	},
	resizeContent: function() {
		this.elContent = $('content');
		this.elWrapper = $('wrapper');
		this.winHeight = Window.getHeight().toInt();
		this.elContent.setStyles({
			'height': (this.winHeight - 70) + 'px',
			'top': '70px'
		});
	}
}
window.onload = function() {
	SITE.init();
	if (Browser.Engine.trident4) {
		// IE6 Hookups
		SITE.resizeContent();
		window.onresize = SITE.resizeContent; 
	}
		
}