$(document).ready(function() {
	function setBoxSizes() {
		var boxes = $("#main .box_content");
		boxes.each(function() {
			var height = $(this).height();
			//console.log(height, height + !(height % 2));
			$(this).css('height', height + !(height % 2));
		});
	}
	function unsetBoxSizes() {
		var boxes = $("#main .box_content");
		boxes.each(function() {$(this).css('height','');});
	}
	
	$("#projects_box .box_content div").hide();
	setBoxSizes();
	
	$("#projects_box h2 a").click(function() {
		unsetBoxSizes();
		$('#' + this.id.replace("show_","")).slideToggle(setBoxSizes)
	});
});
