$(document).ready(function(){
	$('.info-box').hide();
	$('.toggle-link').click(function () {
		$('.info-box').hide();
		var box = "#" + $(this).attr("id") + "-box";
		$(box).show();
	});

}); 