$(document).ready(function() {
	$('a#toggler').click(function() {
		$('#corp').slideToggle(400);
		return false;
	});
});