How do you link an entire presentation in flash?

Let’s say you have a flash animation on a main webpage which animates the company title and logo.

This animation is contained in a table cell, is there anyway you can link this entire flash animation / presentation so that when someone clicks on it, it redirects you back to the index.html?

I know how to link single objects but I’m trying to link EVERYTHING, like the entire area of the table cell - so in effect I want the test, images, and all the lights and such to all link to the same index.html.

Thanks,
Bobby

put

_root.onMouseDown=function(){
	getURL("http://www.google.de","_self");
}

in an own layer in the main timeline

Thank you, that was very helpful

It worked exactly.