﻿function setupOtherContentToggle() {
	jQuery('.toggleothercontent').click(function () {
		jQuery('.toggleothercontent').next().hide();
		jQuery(this).next().show();
	});
}

jQuery(document).ready(function ($) {
	setupOtherContentToggle();
});
