How can I incorporate the timer so once a page loads the timer activates, waits a few seconds then I tell my program what to do next.

I tried this code but it didnt work:

Code:
        Timer1.Interval = 5000
        Timer1.Enabled = True
        Timer1.Start()
        WebBrowser1.Navigate("www.google.com")
        Timer1.Stop()
Can you help?