function input_text(object,text){
    if(object.value == text){
        object.value = '';
        object.setAttribute("class", 'text');
    } 
}

function input_text_blur(object,text){
    if(object.value == ''){
        object.value = text;
        object.setAttribute("class", 'text gray');
    }
}



