<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='http://code.jquery.com/jquery-latest.js'></script>
<style type='text/css'>
.box {
display: none;
padding: 0px !important;
background-color: #FFF;
}
.box.visible {
display: block;
padding: 10px;
}
ul.tabs {
height: 27px;
background: #FFF;
border-bottom: 1px solid #777;
padding: 0 4px;
overflow: hidden;
list-style: none;
}
.tabs li.current, .tabs li:hover {
background-color:#52c8ff;
color:#FFFFFF;
border-color:#52c8ff;
border-left-style: solid;
border-right-style: solid;
border-top-style: solid;
}
.tabs li {
float: left;
color: grey;
line-height: 27px;
margin-right: 1px !important;
padding: 0 7px 10px 8px !important;
font-weight: bold;
cursor: pointer;
}
.tabs li.current span {
color: #FFF;
}
.tabs li span {
float: left;
padding: 0 11px 0 0;
height: 27px;
color: #FFF;
}
</style>
<script type='text/javascript'>
$(function () {
$('ul.tabs').delegate('li:not(.current)', 'click', function () {
act(this);
})
function act(Obj){
$(Obj).addClass('current').siblings().removeClass('current');
var tabId = ($(Obj).index() + 1).toString();
$('.info').html('Здесь какая-то информация ' + tabId);
$('.pict').html('Здесь потом будет картинка ' + tabId);
$('.add').html('А здесь еще какая-то информация ' + tabId);
};
})
</script>
</head>
<body>
<div class="section">
<div class="box visible">
<div class='info'>Здесь какая-то информация 1</div>
<div class='pict'>Здесь потом будет картинка 1</div>
</div>
<ul class="tabs">
<li class="current">Вкладка 1</li>
<li>Вкладка 2</li>
<li>Вкладка 3</li>
</ul>
<div class='add'>А здесь еще какая-то информация 1</div>
</div>
</body>
</html>