jQuery(document).ready(function()
{
	jQuery('.an-head').bind( 'click', function() {
		jQuery( this ).next( 'form' ).slideToggle( 'normal' );
	});
});