﻿///////////////////////////////////////////
// Merger Antitrust JavaScript Support file
//
// Version 1.0
///////////////////////////////////////////
function publicMenuMouseOver(a)
{
  a.style.backgroundColor="#A3B4D2";
  a.style.cursor = "pointer";
}

function publicMenuClick(page)
{
  document.location = "/" + page + ".aspx";
}

function publicMenuMouseOut(a)
{
  a.style.backgroundColor="#EFEFF2";
  
}

function subscriberMenuMouseOver(a)
{
  a.style.backgroundColor="#7FA371";
  a.style.cursor = "pointer";
}

function subscriberMenuClick(page)
{
  document.location = "/secure/" + page + ".aspx";
}

function subscriberMenuMouseOut(a)
{
  a.style.backgroundColor="#F8FFF4";
}

function adminMenuMouseOver(a)
{
  a.style.backgroundColor="#7FA371";
  a.style.cursor = "pointer";
}

function adminMenuClick(page)
{
  document.location = "/secure/" + page + ".aspx";
}

function adminMenuMouseOut(a)
{
  a.style.backgroundColor="#F8FFF4";
}

function calendarMouseOver(a)
{
  a.style.cursor = "pointer";
}