// Initialize.
function init_tab() {
if (!$('ul.tabtitle').length) {
// If not, exit.
return;
}
if (!$('.tabcontent').length) {
// If not, exit.
return;
}
$('.tabcontent:first').fadeIn(1);
$('ul.tabtitle li:first').addClass("akt");
$('ul.tabtitle li').click(function() {
// Show subsequent
jQuery('.tabcontent').hide();
$('.tabcontent:eq('+$('ul.tabtitle li').index(this)+')').fadeIn(1);
$('ul.tabtitle li').removeClass("akt");
$(this).addClass("akt");
//$('#wrapper').scrollTo('.tabcontent',1000);
$('html, body').animate({scrollTop: $('#wrapper').height()}, 1);
},
function() {
});
}
// Kick things off.
$(document).ready(function() {
jQuery('.tabcontent').hide();
init_tab();
});