$(document).ready(function() {
Здесь вылазит ошибка - TypeError: Object #<HTMLDocument> has no method 'ready'
taber('.taber');
});
function taber (tabs) {
$(tabs).find('.item a').click(function() {
// get number
var number = $(this).parent().prevAll().length;
if (number==4) return true;
// remove active
$(this).parent().parent().find('.active').removeClass('active');
// set active
$(this).parent().addClass('active');
// hide blocks
$(this).parent().parent().parent().find('.blocks .block').css('display', 'none');
// show block
$(this).parent().parent().parent().find('.blocks .block:eq(' + number + ')').css('display', 'block');
return false;
});
}