/*
 * top navigation
 */
//var classNameSelectedTop = 'selected1';
var classNameSelectedTop = 'subNavigationSelected';
var classNameSelectedSub = 'subNavigationSelected';

function topnavigationHomeMouseover (e, t) {
      t.style['background'] = "#efc883";
}
function topnavigationHomeMouseout (e, t, i) {
      if (i)
      	t.style['background'] = "#fcf3df";
      else
      	t.style['background'] = "#e7ac37";
}

function topnavigationMouseover (e, f, t) {
      f.className = classNameSelectedTop;
      t.style['background'] = "#EFC883";
}
function topnavigationMouseout (e, f, t, i) {
      /*var pX = e.clientX;
      var aX = f.offsetLeft;
      var wX = f.offsetWidth+1;*/
      f.className = 'subNavigation';
      if (i)
      	t.style['background'] = "#fcf3df";
      else
      	t.style['background'] = "#e7ac37";
}
function subnavigationMouseover (e, f) {
      f.className = classNameSelectedSub;
}
function subnavigationMouseout (e, f, t, i) {
      /*var pX = e.clientX;
      var aX = f.offsetLeft;
      var wX = f.offsetWidth+1;*/
      f.className = 'subNavigation';
      if (i)
      	t.style['background'] = "#fcf3df";
      else
      	t.style['background'] = "#e7ac37";
}
