$(document).ready(function(){

	$('.bubble').click(function(){
        UTIL.overlay();
        $(this).parents('div.entry').children('.commentBlock').slideDown('fast');
        return false;
    });

    $('#overlay').live('click', function(){
         $('.commentBlock').slideUp('fast');
         $(this).fadeOut('slow', function(){
                $(this).remove();
            });
           // $('body').css('overflow-y', 'visible');
            return false;
    });
    


    

});
