function showHideMenu(divId, img) {
    $(divId).toggle();
    
    if (img.src==(TEMPLATE_DIRECTORY+ '/images/arrowh.png')) {
        img.src = TEMPLATE_DIRECTORY+ '/images/arrow-2.png';
    }
    else {
        img.src = TEMPLATE_DIRECTORY+ '/images/arrowh.png';
    }
        
}

function changeMenu(menuType ,menuId, maxId) {
   for (var i=0; i<maxId; i++) {
          $(menuType+''+i).hide();
          $(menuType+'link'+i).setStyle({color: '#3B5131'})
   }       
       
   $(menuType+menuId).show();
   $(menuType+'link'+menuId).setStyle({color: 'black'})    
}