Bash is quite verbose when running jobs in the background:
$ echo toto& toto [1] 15922 [1]+ Done echo toto
Since I\
Wrap it in a dummy script:
quiet.sh:
#!/bin/bash $@ &
then call it, passing your command to it as an argument:
./quiet.sh echo toto
You may need to play with quotes depending on your input.