$(document).ready(function() {
	$('.t-contents').hide();
	
	$('.t-header').click(function() {
		$(this).next().slideToggle(500);
		setTimeout("changeHeight()", 500);
	});
});
