




//Contents for Wholesale,
var home_1 = new Array();
var pro_1=new Array();
pro_1[0]='<a href="#">&nbsp;&nbsp;Lenses</a>';
pro_1[1]='<a href="#">&nbsp;&nbsp;Our Lenses</a>';
pro_1[2]='<a href="#">&nbsp;&nbsp;Essilor Lenses</a>';
pro_1[3]='<a href="#">&nbsp;&nbsp;Lens Coatings</a>';
pro_1[4]='<a href="#">&nbsp;&nbsp;Anti-Reflective</a>';
pro_1[5]='<a href="#">&nbsp;&nbsp;Transitions</a>';
pro_1[6]='<a href="#">&nbsp;&nbsp;Polarized</a>';
pro_1[7]='<a href="frames.php">&nbsp;&nbsp;Frames</a>';
pro_1[8]='<a href="#">&nbsp;&nbsp;Contact Lenses </a>';

//Contents for Customer Service,
var cust_service=new Array();
cust_service[0]='<a href="#">&nbsp;&nbsp;Our Doctors</a>';
cust_service[1]='<a href="#">&nbsp;&nbsp;Eye Exams</a>';

//Contents for about Bibimimi,
var eye_health=new Array();
eye_health[0]='<a href="#">&nbsp;&nbsp;About Your Eyes</a>';
eye_health[1]='<a href="glossary.php">&nbsp;&nbsp;Glossary</a>';
eye_health[2]='<a href="#">&nbsp;&nbsp;Video</a>'; //as options




//Contents for about Bibimimi,
var new_pat=new Array()
new_pat[0]='<a href="#">&nbsp;&nbsp;Your Appointment</a>';
new_pat[1]='<a href="aboutinsurance.php">&nbsp;&nbsp;About Insurance</a>';
new_pat[2]='<a href="#">&nbsp;&nbsp;Patient Forms</a>'; //as options



//Contents for about Bibimimi,
var abt_us=new Array()
abt_us[0]='<a href="#">&nbsp;&nbsp;About us</a>';
abt_us[1]='<a href="#">&nbsp;&nbsp;President Hotline</a>';
abt_us[2]='<a href="#">&nbsp;&nbsp;Contact us</a>'; //as options
abt_us[3]='<a href="news.php">&nbsp;&nbsp;News</a>'; //as options
abt_us[4]='<a href="promotions.php">&nbsp;&nbsp;Promotion</a>'; //as options
		
var menuwidth='500px'; //default menu width
var menubgcolor='#003e8f';  //menu bgcolor
var disappeardelay=250;  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes"; //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all;
var ns6=document.getElementById&&!document.all;

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-10px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)

dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu
