function refresh_links() {
  $.get(refresh_links_url, function(result)
    {
      out  = eval(result);
      if (out[0] != '0') {
		$('#link_messages').attr('class', 'flag');
		$('#link_messages').html('Messages <br>('+ out[0] +' NEW!)');
      }
	  else {
		$('#link_messages').attr('class', '');
		$('#link_messages').html('Messages');
	  }
      if (out[1] != '0') {
		$('#link_online').html('Who\'s On ('+ out[1] +')');
      }
	  else {
		$('#link_online').html('Who\'s On');
	  }
//      if (out[2] != '0') {
		$('#link_chat').html('Chat ('+ out[2] +')');
//      }
//	  else {
//		$('#link_online').html('Who\'s On');
//	  }
	  if (is_admin) {
		  if (out[3] != '0') {
			$('#span_approve_profiles').show();
			$('#link_approve_profiles').html('Approve <br>Profiles ('+ out[3] +')');
		  }
		  else {
			$('#span_approve_profiles').hide();
		  }
		  if (out[4] != '0') {
			$('#span_approve_pictures').show();
			$('#link_approve_pictures').html('Approve <br>Pictures ('+ out[4] +')');
		  }
		  else {
			$('#span_approve_pictures').hide();
		  }
		  if (out[5] != '0') {
			$('#span_approve_events').show();
			$('#link_approve_events').html('Approve <br>Events ('+ out[5] +')');
		  }
		  else {
			$('#span_approve_events').hide();
		  }
		  if (out[6] != '0') {
			$('#span_approve_contest_pictures').show();
			$('#link_approve_contest_pictures').html('Approve Contest<br>Pictures ('+ out[6] +')');
		  }
		  else {
			$('#span_approve_contest_pictures').hide();
		  }
	  }
	  setTimeout(refresh_links, 10 * 1000);
    });
}

