NeonMan,
строку 10 где потеряли?
$(function() {
$('.menu li:first-child').addClass('active');
$('.tab').hide();
$('.tab:first').show();
$('.menu li').click(function(){
$('.menu li').removeClass('active');
$(this).addClass('active');
$('.tab').hide();
var activeTab = $(this).find('a').attr('href');
$(activeTab).show();
});
var hash = window.location.hash;
hash && $("a[href='"+hash+"']").click()
});