// JS document
var selectedMenu = '';

function redirect(url)
{
  window.location = url;
  return true;
}

function menuMouseOver(menu_item)
{
  if(selectedMenu != menu_item)
  {
    document.getElementById(menu_item+'_tab').style.backgroundColor = '';
    document.getElementById(menu_item+'_tab').style.boxShadow = '0px -4px 0px #ff7700';
  }
  return true;
}

function menuMouseOut(menu_item)
{
  if(selectedMenu != menu_item)
  {
    document.getElementById(menu_item+'_tab').style.backgroundColor = '';
    document.getElementById(menu_item+'_tab').style.boxShadow ='';
  }
  return true;
}

function menuSelected(menu_item)
{
  if(menu_item == '')
  {
    return false;
  }
  selectedMenu = menu_item;
  document.getElementById(menu_item+'_tab').style.backgroundColor = '';
  document.getElementById(menu_item+'_tab').style.boxShadow = '-4px -4px 0px #ff5555';
  return true;
}

function sideMenuMouseOver(menu_item)
{
  document.getElementById(menu_item+'_side_tab').style.backgroundColor = '#ffeeee';
  document.getElementById(menu_item+'_side_tab').style.boxShadow = '-2px 2px 1px #ff7700';
  return true;
}

function sideMenuMouseOut(menu_item)
{
  document.getElementById(menu_item+'_side_tab').style.backgroundColor = '';
  document.getElementById(menu_item+'_side_tab').style.boxShadow ='';
  return true;
}

function logmeinMouseOver()
{
  document.getElementById('logmeinPanel').style.boxShadow = '-4px 4px 2px #ff5555';
  return true;
}

function logmeinMouseOut()
{
  document.getElementById('logmeinPanel').style.boxShadow ='';
  return true;
}
