$( document ).ready( function() {

//	$( 'input[name="businesses[]"]' ).eq( 0 ).before( '<input type="checkbox" id="select_all" /> <label for="select_all"><b>Select All</b></label><br />' );

//	$( '#select_all' ).click( function() {
//		var is_checked = this.checked;
//		$( 'input[name="businesses[]"]' ).each( function() {
//			this.checked = is_checked;
//		} );
//	} );

	$( 'form#info_request' ).submit( function() {
		$.blockUI();
		return true;
	} );

	$( window ).unload( function() {
		$.unblockUI;
	} );

} );
