$(function() {
$('.tabs .tabsNav a').click(function(e) {
$('.tabs .tabsNav a.current').removeClass('current');
$(this).addClass('current');
$('.tabs div.linkTab:not(:hidden)').hide();
$(this.hash).show();
e.preventDefault();
});
});$(function() {
$('.tabs .tabsNav