$(document).ready(function() {
	var $header = $('#keyinfo');
	$header.click(function() {
		$('#keyinfos').slideToggle('400', 'swing');
		$header.toggleClass('current');
	});
	
	$header.hover(function() {
	$(this).css('cursor','pointer');
	}, function() {
	$(this).css('cursor','auto');
	});
});

