// jQuery stuff for the site

jQuery( document ).ready( wcuk_init );

function wcuk_init()
{
	// If the "I'm attending" box is not ticked, hide the additional fields
	if ( ! jQuery( '#wcuk_attending:checked' ).length ) jQuery( '#main div.attendee-additional-info' ).hide().addClass( 'hidden' );
	// 
	jQuery( '#wcuk_attending' ).click( function() {
		var add_fields = jQuery( '#main div.attendee-additional-info' );
		if ( add_fields.hasClass( 'hidden' ) ) {
			add_fields.slideDown().removeClass( 'hidden' );
		} else {
			add_fields.slideUp().addClass( 'hidden' );
		}
	} );
}