var $links = jQuery('#main-content');

jQuery('#choose span a').click(function() {
	var $this = jQuery(this),
		type = $this.attr('id');

	$links.children('div.post')
		.hide()
		.filter('.' + type)
		.show()
				
	return false;
});
