/*
*
* Sidebar Javascript
*
* (c) 2008 Du Maurier Ltd
*
* Author: S.Manning Jul 2008
*
*=============================================================================*/

/*
 *
 * Display the Menu
 *
 */
function showMenu(ctrlId, parentId) {
    var div=document.getElementById(ctrlId);

    div.setAttribute("class","open-drawer");
    div.className="open-drawer";

    div=document.getElementById(parentId);
    div.setAttribute("class","highlight");
    div.className="highlight";
};

/*
 *
 * Hide the Menu
 *
 */
function hideMenu(ctrlId, parentId) {
    var div=document.getElementById(ctrlId);
    div.setAttribute("class","close-drawer");
    div.className="close-drawer";

    div=document.getElementById(parentId);
    div.setAttribute("class","");
    div.className="";
};

