$(document).ready(function(){
	// ie6 forms
	if($.browser.msie & $.browser.version == 6){
		$('input[type="text"], input[type="password"]').addClass('text');
	}
	$('.basket .b-button, .auth-anchor').toggle(function(){
		$(this).next('.popup').fadeIn();
	},function(){
		$(this).next('.popup').fadeOut();
	})
	$('.cat-search > span').toggle(function(){
		$(this).next('.search-popup').fadeIn();
	},function(){
		$(this).next('.search-popup').fadeOut();
	})
	$('.prod tr:even').addClass('even');
})
