var down_obj=0;
function over(obj) {
if (obj.className == "text" || obj.className == "adres" ){
obj.className+="_up";
}
}
function clear(obj,flag) {
str=obj.className;
nom_=str.indexOf("_");
del=str.substring(nom_+1,str.length);
   if(del==flag){
   obj.className=str.substring(0,nom_);
   }
}
function out(obj) {
clear(obj,"up");
}
