// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(function() {

	$( '#lieferadresse_check' ).click( function() {
		$( 'lieferadresse_check_hidden' ).val( $(this).is( ':checked' ) );
		if( $(this).is( ':checked' ) ) {
			$( '#lieferadresse_block' ).hide( 'slow' );
		} else {
			$( '#lieferadresse_block' ).show( 'slow' );
		}
	});

});