<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript" src="http://yandex.st/jquery/1.4.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#Clk").click(function () {
$(this).stop(true,true).fadeOut(800).delay(2500).fadeIn(800);
});
});
</script>
</head>
<body>
<div id="Clk" style="background:green;width:266px;height:176px;position:absolute;z-index:2"></div>
<div style="padding:10px;width:240px;height:150px;overflow-y:auto;border:red double 3px">
<center><font color=red face="Arial Black">E r r o r !</font>
</center><pre>Здравствуйте, у меня есть блок,
который нужно скрыть,
потому-что на его место,
после клика по кнопке,
помещается текст об ошибке.</pre>
</div>
</body>
</html>