[jQuery] Make an entire div clickable

[jQuery] Make an entire div clickable


Hi all
I am attempting to write a bit of code to make all divs with the class
"clickable" into a big button, this button would act the same as
clicking the href contained within the div. ie, I want to make the
entire div clickable, not just the href within it.
I have written this code, but it doesn't work, and it doesn't produce
an error:
jQuery(".clickable").css("cursor","pointer");
    jQuery(".clickable").click(function(){
     $(this).children("a:first").click();
    });
eventually I will want to actiate the hover state when hovering over
the clickable div.
Cheers.
Murray.