/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(
	function() {
		$('.menu-project-archive h3').click(
			function () {
				switch_block_content_display(this);
			}
		);
	}
);

function switch_block_content_display (elem) {
	var block_content = $(elem).next();
	block_content.slideToggle();
}
