function setInputClass(id, check, normal){
	if(id.value == check){
		id.value = '';
		id.className = 'normal';
	}else if(id.value == ''){
		id.value = normal;
		id.className = 'gray';
	}
}