function check_or_redirect()
{
	forced = Number($.query.get('forced'));
	univ = $.cookie('univ');
	if ( univ && !forced )
	{
		window.location = '/dinner/' + univ;
	}
}

function set_univ(uni)
{
	$.cookie('univ', uni);
}

