jQuery(function($) {
	$( '.flash_message' ).each(function(){
		var messageElement = $( this );
		window.setTimeout(function() {
			messageElement.fadeOut( 'slow' );
		}, 5000);
	});
});

jQuery(function($) {
	$(document).ajaxStart( function() {
		$( 'img#load-indicator' ).show();
	});
	$(document).ajaxStop( function() {
		$( 'img#load-indicator' ).hide();
	});
	$(document).ajaxError( function( event, jqXHR ) {
        if( jqXHR.status === 403 ) {
            window.location.reload();
        }
    });
});

