/*
	This javascript forces the column height to fill the screen
	vertically so the faux-columns in the background image are
	full height.
*/
//var container;

function initVars() {
	$('#index').height($(document).height());
	
	//setContainerHeight();
}

function setContainerHeight() {
	$(window).unbind("resize", setContainerHeight);
	$('#index').height(0);
	$('#index').height($(document).height());
	$(window).bind("resize", setContainerHeight);
}

$(window).load(initVars);
