2022-11-14 17:31:15 +00:00
|
|
|
// JavaScript Document
|
|
|
|
|
|
|
|
$(function(){
|
|
|
|
$('.tabContent').find('li#intro').show();
|
|
|
|
$('.tab').find('a').click(function(){
|
|
|
|
var obj = $(this).attr('href');
|
|
|
|
$(this).addClass('current').siblings().removeClass('current');
|
|
|
|
$(obj).fadeIn().siblings().hide();
|
|
|
|
return false;
|
|
|
|
});
|
2022-11-14 15:49:28 +00:00
|
|
|
});
|