// JavaScript Document
$q = jQuery.noConflict();
$q.centerVert = function() {
	qh = $q(window).height();
	tm = Math.round((qh-620)/2);
	if (tm>20) {
		$q("#page-container").css({"margin-top":tm+"px"});
	}
	else {
		$q("#page-container").css({"margin-top":"20px"});
	}
}
$q(document).ready( function() {
	$q.centerVert();
	$q(window).resize( function() {
		$q.centerVert();
	});
});
