$(document).ready(function(){
	$('.menu li:first').css('border', 'none');
	if ($.browser.msie && $.browser.version == 6){
		$('.content input[type="text"], .content input[type="password"], .print input[type="text"]').addClass('text');
	}
	$('.prod tr:even').addClass('even');
	$('.cat-search > span').toggle(function(){
		$(this).next().fadeIn();
	},function(){
		$(this).next().fadeOut();
	});
	$('.menu li').hover(function(){
		$(this).children('.submenu').stop(true, true);
		$(this).children('.submenu').fadeIn('fast');
	},function(){
		$(this).children('.submenu').fadeOut('fast');
	});
	$('.rightnav li > a').toggle(function(){
		$(this).next('div').fadeIn();
	},function(){
		$(this).next('div').fadeOut();
	});
});
