Danster said:
...But it was just a thought that if there was a way for a program to automate that kinda of repetitive task for you. I know it's extreamly lazy

but it was just a thought.
Try either of these:-
1)
To turn on or turn off automatic dial-up (PPP) Internet connections
1. Choose System Preferences from the Apple menu/dock.
2. Click Network.
3. Choose your modem or other dial-up device from the Show pop-up menu.
Note: The Show menu is named "Configure" prior to Mac OS X 10.1.
4. Click the PPP tab.
5. Click PPP Options.
6. Click the checkbox to select or deselect the "Connect automatically when starting TCP/IP applications" option.
7. Click OK.
8. Click Save
I am not able to try this myself at present, no access to OSX till later...
But this should mean that you don't have to connect via the telephone menulet, all you would do is open safari or mail and the Mac will recognise that you are starting a TCP/IP connection and voilla...
2)Alternatively, use an Applescript, as previously discussed:
try either one of these
-----------------------
tell application "Internet Connect"
connect
end tell
----------------------
tell application "internet connect"
activate
connect
end tell
-----------------------
No access to OSX at the minute, so can't test. Once in script editor save each one as an Application (compile them), and put into the file into your login items in the system preferences. Then when you login you should automatically get connected to the internet.
Only try one of the above at a time.