

function show_block(id, height){

        $('#'+id).animate({

                height: height
                
        }, 500, function() {

                $('#'+id).css('overflow', 'visible');
        });        
}     
