$(function() {
	$("a[rel^=post-link-]").colorbox({
		maxWidth: "75%",
		maxHeight: "75%",
		title: false,
		current: "",
		previous: "",
		next: "",
		fixed: true
	});
	
	$(".show-more-button, .show-less-button").bind("click", function() {
		var $position = $(this).closest(".position");
		
		$position.find(".position-content").toggle();
		$position.find(".position-show-more").toggle();
		
		return false;
	});
	
});
