$(document).ready(function() {
		$('#colA:eq(0)> div').hide();
		$('#colA:eq(0)> div.current').show();
		$('#colA:eq(0)> h1').click(function() {
			$(this).next('div:hidden').animate({ height: 'show', opacity: 'show' }, 'slow')
			.siblings('div:visible').animate({ height: 'hide', opacity: 'hide' }, 'slow');
			return false;
		});
		$("h1 a").click(function() {
			$("h1 a.current").removeClass("current");
		});
	});

