/* 
 * Author: George Hindle - george <at> b8solutions <dot> co <dot> uk
 */

( function( $ ) {
  
  $( function() {
    $( '.select select' ).change( function() {
      $( this ).parents( 'form' ).each( function() {
        $( this ).submit();
      } );
    } );
    
    $( '.select input' ).css( { display: 'none' } );
    
    $( '.selection_list a' ).click( function() {
      $( '.loading' ).css( { 'display': 'inline', 'visibility': 'visible' } ).fadeIn( 200 );
    } );
  } );
} )( jQuery );
