$(document).ready(function(){
	/*$('#enter').click(function(){
		if($('.enter').is(':visible')){
			$('.enter').fadeOut(200);
		}else {
			$('.enter').fadeIn(200);
		}
		return false;
	})
	$(document).click(function(e){
		if (!$(e.target).parents('.enter').length){
			if($('.enter').is(':visible')){
				$('.enter').fadeOut(200);
			}
		}
	})
	$('.prod tr:nth-child(even)').addClass('even');*/
	$('#ms').addClass("chbf").attr("width", "70px");
	$('#ms').focus(function(){
		$(this).removeClass("chbf").animate({width:"140px"}).addClass("chb");
	}).focusout(function(){
		$(this).removeClass("chb").animate({width:"70px"}).addClass("chbf");
		//$('#ress1').hide();	
	});
});
