$(document).ready(function(){
	$("#expan1, #expan2, #expan3, #expan4, #expan5, #expan6").hide();
	$(".abre1").click(function(){$("#expan1").toggle();});
	$(".abre2").click(function(){$("#expan2").toggle();});
	$(".abre3").click(function(){$("#expan3").toggle();});
	$(".abre4").click(function(){$("#expan4").toggle();});
	$(".abre5").click(function(){$("#expan5").toggle();});
	$(".abre6").click(function(){$("#expan6").toggle();});

	});

