﻿// JScript File
if (typeof window.onload == 'function') {bpOldOnLoad = window.onload;}
window.onload = function()
{
  if (window.bpOldOnLoad) {bpOldOnLoad();}
  bpInit();
}
function bpInit()
{
    var b = xGetElementById('home');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

    b = xGetElementById('ourlocations');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;
    
        b = xGetElementById('m1');
        b.onmouseover=mcancelclosetime;//();
        b.onmouseout=mclosetime;//();

    b = xGetElementById('oureyecareteam');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

        b = xGetElementById('m2');
        b.onmouseover=mcancelclosetime;//();
        b.onmouseout=mclosetime;//();

    b = xGetElementById('services');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

    b = xGetElementById('ourtechnology');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

    b = xGetElementById('practicenews');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

    b = xGetElementById('requestappt_left_menu');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

    b = xGetElementById('ordercontactlenses_left_menu');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

    b = xGetElementById('enewslettersignup_left_menu');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

    b = xGetElementById('requestappt_r');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

    b = xGetElementById('ordercontactlenses_r');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

    b = xGetElementById('enewsletter_r');
    b.onmouseover = bpOnMouseover;
    b.onmouseout = bpOnMouseout;

}
function bpOnMouseover(e)
{
    var p, w, h, x, y, offset = 50; // offset = horizontal distance between mouse and edge of preview
    p = xGetElementById(this.id+'_hover');
    if (p)
    {
    p.style.display = 'inline';
    p.style.visibility = 'visible';
    }
    p = xGetElementById(this.id+'_unhover');
    if (p)
    {
    p.style.display = 'none';
    p.style.visibility = 'hidden';
    }
    if(p)
    {
        if(this.id == 'ourlocations')
        {
            mopen('m1');
        }
        else if(this.id == 'oureyecareteam')
        {
            mopen('m2');
        }
    }
}
function bpOnMouseout()
{
  p = xGetElementById(this.id+'_hover');
  if (p)
  {
    p.style.display = 'none';
    p.style.visibility = 'hidden';
  }
  p = xGetElementById(this.id+'_unhover');
  if (p)
  {
    p.style.display = 'inline';
    p.style.visibility = 'visible';
  }
    if(p)
    {
        if((this.id == 'ourlocations')||(this.id == 'oureyecareteam'))
        {
            mclosetime();
        }
    }
}
