jQuery(function($) {
  setTimeout(function(){var prepare = function() {
    var testWidth = $('.test').width();
    var tabsWidth = $('.tabs ul').outerWidth(true);
    var tabsHeight = $('.tabs a').height();
    $('.tabs_not').css('width', testWidth - tabsWidth - 1 + 'px');
    $('.tabs_not').css('height',  tabsHeight  + 'px');
  };
  $(window).resize(prepare).load(prepare);
  $(window).resize();
  $('.test').css('background' , 'none');
   $('.tabs a').last().addClass('last');}, 100);
  
});
