How can I optimize this sample snippet:
Note that it has multiple calls to locate the #data and #click tags.
$(function(){
$('#data').hide();
$('#click').click(function() {
$('#data').toggle('', function() {
});
$('#click').hide();
});
})