i have two different divs (code was simplified, this is not the actual code.)
Assign a class to your div's, and then assign the click event using the class like this:
Then
$('.clickable').click(function()
{
DoWork();
});
You could also list the id's like this:
$("#test, #funt").click(DoWork);
I usually try to use classes because it's cleaner when you're dealing with multiple divs - you don't have to list the ID of each.