/* Authorization popup */
function auth() {
	$('#auth_hldr').fadeIn();
	$('#auth_form').fadeIn();
};
function auth_close() {
	$('#auth_hldr').fadeOut();
	$('#auth_form').fadeOut();
};
