$(function() {

	$('a.menuLink', this).click(function(e) {
		e.preventDefault();
		$("#post").load(this.href);
	});

	$('textarea').wysiwyg();

});