// aOverrides is called from aUI()
// This helps for things like Cufon that need to be setup again after an AJAX call
function aOverrides()
{
	Cufon.refresh();
}

function checkControlSets() {
	dh = $(document).height() - 75;
	wh = $(window).height();
	
	if (dh > wh) {
		$('.a-control-sets').addClass('relative');
	};
	
	if (dh <= wh) {
			$('.a-control-sets').removeClass('relative');
	};
}
