$(document).ready(function(){
	 var w = $('.catalog-img-in').width();
	   $('.width').width(660-w);
	
	$('.test').hover (
	     //  menu
		
		function(){
			$(this).next().children().children('.left-border').addClass('border-red');
		},
		function(){
			$(this).next().children().children('.left-border').removeClass('border-red');
		});
	
	$('.tabs li ').hover (
	     //  menu
		function(){
			$(this).css('color','#000');
			Cufon.replace(".tabs li", {hover:true}); 
		},
		function(){
			$(this).css('color','#999');
			Cufon.replace(".tabs li", {hover:true}); 
		});
	    
		//  open
	/*$('.level').click(function(){			if($(this).hasClass('level-open') ){				$(this).parent().children('.display-none'). hide();				$(this).removeClass('level-open');				}				else{					$('.display-none').hide();					$('.level').removeClass('level-open');					$(this).parent().children('.display-none'). show();				    $(this).addClass('level-open');				}		});	
 */
	
	
});	   

// поиск
	   function searchFocus(){
			var search = $('#search-in');
			if(search.val()=='Найти...'){
				search.val('');
			}
		}
		function searchBlur(){
			var search = $('#search-in');
			if(search.val()==''){
				search.val('Найти...');
			}
		}

// табы
	$(function() {
		
                      $('.features').hide();
					  $('.comment').hide();
					  $('ul.tabs').delegate('li:not(.current)', 'click', function() {
						$(this).addClass('current').siblings().removeClass('current')
						  .parents('.section').find('.box').hide().eq($(this).index()).show();
					  })
					  
					  $('ul.tabs').delegate('li:not(.current)', 'click', function() {
						$(this).addClass('current').siblings().removeClass('current')
						  .parents('.section').find('.box').hide().eq($(this).index()).show();
					  })
		 }); 






   
