
function mainNavigateTo(locationCode)
{
  switch(locationCode)
  {
    case 'home':
      document.location.href = "home.html";
      break;
    case 'about':
      document.location.href = "about.html";
      break;
    case 'products':
      document.location.href = "products.html";
      break;
    case 'health':
      document.location.href = "health.html";
      break;
    case 'buy':
      document.location.href = "where.html";
      break;
    case 'faq':
      document.location.href = "faq.html";
      break;
    case 'news':
      document.location.href = "news.html";
      break;
    case 'contact':
      document.location.href = "contact.html";
      break;
    default:
      document.location.href = "home.html";
  }
}

function mainNavMouseOver(obj, state) 
{
  if (state == 'on') 
  {
        document.getElementById(obj.className).className = obj.className + 'On';
      
  }
  else 
  { 
        document.getElementById(obj.className).className = obj.className;
   
  }
}


