function hover(id) {
unhover('tps');
unhover('tpu');
unhover('tup');
unhover('tri');
unhover('tms');
document.getElementById('p_'+id).style.display = 'block';
}

function unhover(id) {
document.getElementById('p_'+id).style.display = 'none';
}

function show(id) {
document.getElementById(id).style.display = 'block';
}

function hide(id) {
document.getElementById(id).style.display = 'none';
}
