$( function () {
    $( '#portal-searchbox .searchButton' ).click( function ( e ) {
        $( this ).removeClass( 'submitting' );
        $( '#portal-searchbox' ).css( { 'background-color': '#462d6e' } ).animate( {
            'width': 212,
            'height': 19
        }, 'slow', function () {
            $( '#portal-searchbox' ).css( { 'overflow': 'visible' } )
            $( '#portal-searchbox .searchButton' ).click( function ( e ) {
                $( '#portal-searchbox form' ).submit();
            } );
        } );
        e.preventDefault();
    } );
} );

