$(document).ready(function(){

 //TAB
  var tabContainers = $('div.tabs > div'); 
  tabContainers.hide().filter(':first').show(); 
  $('div.tabs ul.tabNav a').click(function () {
        tabContainers.hide(); 
        tabContainers.filter(this.hash).show(); 
        $('div.tabs ul.tabNav a').removeClass('selected'); 
        $(this).addClass('selected');
        return false;
  }).filter(':first').click();
  
  $("#promoSlider").show();
    
	$("#promoSlider").easySlider({ 
		auto: true, 
		continuous: true,
		numeric: true,
    pause: 10000,
    numericId: "promoSliderControl" 
	});
	
	//TAB новинки
  var tbCont = $('#nw > div'); 
  tbCont.hide().filter(':first').show(); 
  $('#nw ul.tbNav a').click(function () {
        tbCont.hide(); 
        tbCont.filter(this.hash).show(); 
        $('#nw ul.tbNav a').removeClass('selected'); 
        $(this).addClass('selected');
        return false;
  }).filter(':first').click();
  
});
