var cel = null;
function toggleContent(el)
{
		if (cel) {
			$('#' + cel).slideUp('slow');
		}
	if (el != cel) {
		cel = el;
		$('#' + cel).slideDown('slow', function(){$('#h_' + cel).ScrollTo(1000);});
	} else {
		cel = null;
	}
	return false;
}