shell script help

Hi im new to writing shell scripts and im stuck.
im trying to write a script like of takedown.
this is what i have so far:

#!/bin/bash
clear
echo -e '\a'
echo
"=============================================================================

    SSSSS                                   AAAAA                                    SSSSS
  SSSSSSS               AAAAAAA                              SSSSSSS
  SSS   SSS                            AAA    AAA               SSS   SSS
  SSS                                         AAA    AAA              SSS
   SSSSS                                  AAA    AAA              SSSSS
    SSSSS               AAAAAAAAA              SSSSS
     SSSSS              AAAAAAAAA               SSSSS
       SSSS                AAA    AAA                 SSSS
        SSS                AAA    AAA                                     SSS
 SSS    SSS                 AAA    AAA            SSS    SSS

SSSSSSSS X X AAA AAA X X SSSSSSSS X X
SSSSSS X X AAA AAA X X SSSSSS X X

=============================================================================

                        SWITCHED ACCESS SERVICES
                            A0344462 ISSUE 2
                              RELEASE NOTES

     This equiptment generates, uses, and can radiate radio waves.

     CAUTION: if not installed and used in accordance to the DEA752A act
     evideance is unusable.

Welcome to the LAPD Switched Access Services please login with your user and pass."

what i want to do is make a login script and make it so people can telnet to my system and see this.

and after they login i want it to say welcome (there user name ) and ask them what number they would like to listen in to.

and when they submite the number i want another shell script to play an audio file audio

sorry for asking for so much but i i been researching for weeks and no look;)

thanks in advance

put it in .profile or login file for which ever shell you are using .. for ksh its .profile in home area

hi thanks for your reply but im not sure what you mean

when you log in to unix box by default .profile ( for ksh ) runs to load defaults this same file can be used to customize your shell like changing your prompt , include functions and so on same way you can display message or run script.
.profile or other equivalent files are located in user HOME area and if its not there then create one. to view these files use ls -la command

thank's for your help but what i want to do is make a data base of users like on a website
so they logon to that and not my root box.

and is it posible to change the color of my shell script text
Thanks