/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function hideMenu(id){
    //alert(id);
    var t = document.getElementById(id);
    t.className = 'hidemenu topmenun';
    
}

function displayMenu(id){
    var t = document.getElementById(id);
    t.className = 'displaymenu topmenun';
}

