$(document).ready(function(){
	$(".opener").toggle(function(){
		$(this).next().show(1000);
	}, function(){
		$(this).next().hide(500);
	});
});
