// Function to slide content

$(function() {
	$('#activateformslider').click(function() {
		$('#formslider').toggle(2000);
	});
});