line-height: 30px;
background: #eee;
padding: 5px;
border-bottom: 1px solid #ccc;
cursor: pointer;
}
$(document).ready(function(){
$(“.nav1”).css(“height”,”160px”);
$(“.tabs li h3:first”).addClass(“current”);
$(“.tabs li h3”).click(function() {
$(“.tabs li h3”).removeClass(“current”);
$(this).addClass(“current”);
$(“.tabs li ul”).animate({height:”0″},”fast”);
$(this).next().animate({height:”160″},”slow”);
});
});










