$(document).ready(function(){
	$(".expandomatic").next().hide();
	$(".expandomatic").click(function(){
		$(this).next().toggle();
	});
});