/* Investment Dropdown
    -------------------------------------------------------------- */
$(document).ready(function(){
	$(".hidden-item").hide();
	$(".job-description").hide();
	$("h2").click(
		function() {
			$(this).next('.hidden-item').toggle();
		});
	$(".name").click(
		function() {
			$(this).next('.job-description').toggle();
			$(this).parent('li').toggleClass('active');
		});
});

