$(function(){	
	$('.tLab a').hover(
		function(){
			$('.tLab a').animate({boxShadow: '0 0 4px 2px rgba(250, 195, 13, 1)'}, 1000);
		},
		function(){
			$('.tLab a').animate({boxShadow: '0 0 4px 2px rgba(250, 195, 13, 0)'}, 1000);	
		}
	);
	showCounter();
	focusForm();
});

function showCounter(){
	document.getElementById('footerCounter').innerHTML = '<a href="http://www.liveinternet.ru/click" '+'target=_blank><img src="http://counter.yadro.ru/hit?t14.1;r'+escape(document.referrer)+((typeof(screen)=='undefined')?'':';s'+screen.width+'*'+screen.height+'*'+(screen.colorDepth?screen.colorDepth:screen.pixelDepth))+';'+Math.random()+'" alt="liveinternet.ru: iieacaii ?enei oeoia ca 24 ?ana, iinaoeoaeae ca 24 ?ana e ca naaiai\y" '+'border=0 width=88 height=31></a>';
}

function openVendors(t){
	if(!$(t).hasClass('open')){
		$(t).empty().html('Спрятать').addClass('open');
		$('.vendorsList a.none').addClass('open').removeClass('none');
	}else{
		$(t).empty().html('Все производители').removeClass('open');
		$('.vendorsList a.open').addClass('none').removeClass('open');
	}
}

function focusForm(){
	anim = true;	
	$('.focus').focus(function(){
		if(anim){
			anim = false;
			if(!$.browser.msie){
				$('.search div').animate({'width' : '30%'}, 700, function(){anim = true});
			}
		}
	});
	$('.focus').focusout(function(){
		if(anim){
			anim = false;
			if(!$.browser.msie){
				$('.search div').animate({'width' : '17%'}, 500, function(){anim = true});
			}
		}
	});
}

