$(document).ready(function() {
  $('#accounts').hide();
  $('a#accounts-toggle').click(function() {
		$('#accounts').toggle(400);
		return false;
	}
  );
});

function MsgBox (textstring) {
alert (textstring) }

