Val., Ваша таблица
В окно ХТМЛ Верх
<style>
.container1 {width: 764px; margin: 0 auto; padding: 5px 0; }
.tab_container1 {
float: left;
width: 640px;
height: 184px;
background-color: #F4E283;
border-bottom: 1px solid #000000;
border-top: 1px solid #000000;
border-left: 1px solid #000000;
border-right: 1px solid #000000;
}.tab_content {
padding: 5px;
}ul.tabs {
margin: 0;
padding: 0;
float: right;
list-style: none;
height: 180px;
width: 120px;}
ul.tabs li {
display: block;
height: 60px;
border-top: 1px solid #000000;
border-bottom: 1px solid #000000;
border-right: 1px solid #000000;
border-left: 1px solid #000000;
overflow: hidden;
width: 120px;
background-color: #F4E283;
position: relative;
margin-left: -3px;
}ul.tabs li a {
text-decoration: underline;
color: transparent;
display: block;
outline: none;
margin-top: 20px;
}ul.tabs li.active {
border-bottom:1px solid #000000;
border-top:1px solid #000000;
border-left: 0px solid #000000;
border-right: 1px solid #000000;
margin-left: -4px;
width: 121px;
}</style>
В Объявление
<center>
<table align="center" cellspacing="2" cellpadding="2" border="0" style="width: 770px; height: 190px;">
<tbody><tr>
<td align="center">
<div class="container1">
<!--- Содержимое --->
<div class="tab_container1">
<!--- Содержимое вкладки 1 --->
<div style="display: block;" id="tab1" class="tab_content">
текст 1
</div>
<!--- Содержимое вкладки 2 --->
<div style="display: none;" id="tab2" class="tab_content">
текст 2
</div>
<!--- Содержимое вкладки 3 --->
<div style="display: none;" id="tab3" class="tab_content">
текст 3
</div></div>
<!--- Конец содержимого и начало вкладок с меню --->
<ul class="tabs">
<li class="active"><a href="#tab1">Вкладка 1</a></li>
<li><a href="#tab2">Вкладка 2</a></li>
<li><a href="#tab3">Вкладка 3</a></li>
</ul>
<!--- Конец меню --->
</div>
</td>
</tr></tbody>
</table>
</center>
И скрипты в окно ХТМЛ-низ
<!-- скрипты меню вкладок -->
<script type="text/javascript">
$(document).ready(function(){
$('.splLink').click(function(){
$(this).parent().children('div.splCont').toggle('normal');
return false;
});
});
</script>
<script type="text/javascript">$(document).ready(function() {
$(".tab_content").hide();
$("ul.tabs li:first").addClass("active").show();
$(".tab_content:first").show();$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active");
$(this).addClass("active");
$(".tab_content").hide();
var activeTab = $(this).find("a").attr("href");
$(activeTab).fadeIn();
return false;
});});
</script>
<!-- скрипты меню вкладок конец -->