jQuery(document).ready(function($){

var tabContainers = $('div.tabs_blocks > div.tab_content');
tabContainers.hide().filter(':first').show();
$('div.tabs div.tabs_names a').click(function(){
 tabContainers.hide();
 tabContainers.filter(this.hash).show();
 $('div.tabs div.tabs_names a').removeClass('tab_name_act');
 $(this).addClass('tab_name_act');
 return false;
}).filter(':first').click();

var tabContainers2 = $('div.tb_blocks > div.tbc');
tabContainers2.hide().filter(':first').show();
$('div.tb div.tbn a').click(function(){
 tabContainers2.hide();
 tabContainers2.filter(this.hash).show();
 $('div.tb div.tbn a').removeClass('tab_name_act');
 $(this).addClass('tab_name_act');
 return false;
}).filter(':first').click();

$('div.cats ul li').first().addClass('nonbg');
$('div.pages_list ul li').first().addClass('nonbg');

$("span.tabber_bg").center({horizontal:true, vertical:false});











































});
