var id;
function lite_on(id){
document.getElementById(id).style.color="red";
document.getElementById(id).style.font.size="35px";
}
function lite_off(id){
document.getElementById(id).style.color="#FCFFC6";
document.getElementById(id).style.font.size="30px";
}
function lite_img(id){
document.getElementById(id).style.borderColor="red";
}
