Remca,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
</script>
<script>
$(function(){
$(".toggle_content").hide();
$(".toggle_triger").click(function(){ //"фишка" переключения
$(".toggle_content").slideUp("normal");
if($(this).next(".toggle_content").is(':visible') )
{
$(this).next().slideUp("normal");
}
else {
$(this).next().slideDown("normal");
}
});
})
</script>
</head>
<body>
<div class="toggle_item">
<!--"расчёт 1"-->
<h3 class="toggle_triger">Расчёт колонны заливочных труб</h3>
<div class="toggle_content"> <iframe src="http://javascript.ru/forum/"></iframe>
</div>
</div>
</body>
</html>