function adjustMainHeight(adjustHeight) {
	var inih = ($(document).height()-64);
	var targh = inih+adjustHeight;
	$('#main').css('min-height', (inih+32)+'px');
	$('#content').css('min-height', (inih+32)+'px');
}
function toggleContent(dir) {
	if (dir == 'hide') {
		$('#hide_content').fadeOut();	
		$('#content').fadeOut('slow',function(){ $('#show_content').fadeIn(); });
	} else {
		$('#show_content').fadeOut();	
		$('#content').fadeIn('slow',function(){ $('#hide_content').fadeIn(); });
	}
}
