/**********************************************
 clean.js
 file path: /dashboard/themes/$industryName/js/

 - Used to create the cascading dynamic menu contained
   in all 'clean' themes in the following industries:
   - auto

 Created: 10/02/2007
 Changed: 10/02/2007

 Copyright (c) 2006 - 2007
 DnS Inc. 
 All Rights Reserved 
************************************************/
function expand(s) {
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  if (td != null) {
    td.className = "menuHover";
  }
  
  if(d != null) {
    d.className = "menuHover";
  }  
}

function collapse(s) {
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  if (td != null) {
    td.className = "menuNormal";
  }
  
  if(d != null) {
    d.className = "menuNormal";
  }
}