$(document).ready(function() {
	$('#hardcopy').click(function() {
		if ($(this).is(':checked'))
		{
			$('#address').slideToggle('normal');
		} else
		{
			$('#address').hide();
		}
	});
	if (!$('#hardcopy').is(':checked'))
	{
		$('#address').hide();
	}
});
