	<!--

var isDOM = (document.getElementById ? true : false); 
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers ? true : false);
function getRef(id) {
if (isDOM) return document.getElementById(id);
if (isIE4) return document.all[id];
if (isNS4) return document.layers[id];
}
function getSty(id) {
return (isNS4 ? getRef(id) : getRef(id).style);
} 

var popTimer = 0;

var litNow = new Array();
function popOver(menuNum, itemNum) {
clearTimeout(popTimer);
hideAllBut(menuNum);
litNow = getTree(menuNum, itemNum);
changeCol(litNow, true);
targetNum = menu[menuNum][itemNum].target;
if (targetNum > 0) {
thisX = parseInt(menu[menuNum][0].ref.left) + parseInt(menu[menuNum][itemNum].ref.left);
thisY = parseInt(menu[menuNum][0].ref.top) + parseInt(menu[menuNum][itemNum].ref.top);
with (menu[targetNum][0].ref) {
left = parseInt(thisX + menu[targetNum][0].x);
top = parseInt(thisY + menu[targetNum][0].y);
visibility = 'visible';
      }
   }
}
function popOut(menuNum, itemNum) {
if ((menuNum == 0) && !menu[menuNum][itemNum].target)
hideAllBut(0)
else
popTimer = setTimeout('hideAllBut(0)', 600);
}
function getTree(menuNum, itemNum) {

itemArray = new Array(menu.length);

while(1) {
itemArray[menuNum] = itemNum;

if (menuNum == 0) return itemArray;
itemNum = menu[menuNum][0].parentItem;
menuNum = menu[menuNum][0].parentMenu;
   }
}


function changeCol(changeArray, isOver) {
for (menuCount = 0; menuCount < changeArray.length; menuCount++) {
if (changeArray[menuCount]) {
newCol = isOver ? menu[menuCount][0].overCol : menu[menuCount][0].backCol;

with (menu[menuCount][changeArray[menuCount]].ref) {



if (isNS4) bgColor = newCol;
else backgroundColor = newCol;
         }
      }
   }
}
function hideAllBut(menuNum) {
var keepMenus = getTree(menuNum, 1);
for (count = 0; count < menu.length; count++)
if (!keepMenus[count])
menu[count][0].ref.visibility = 'hidden';
changeCol(litNow, false);
}



function Menu(isVert, popInd, x, y, width, overCol, backCol, borderClass, textClass) {


this.isVert = isVert;

this.popInd = popInd

this.x = x;
this.y = y;
this.width = width;





this.overCol = overCol;
this.backCol = backCol;

this.borderClass = borderClass;
this.textClass = textClass;

this.parentMenu = null;
this.parentItem = null;

this.ref = null;
}

function Item(text, href, frame, length, spacing, target) {
this.text = text;
this.href = href;
this.frame = frame;
this.length = length;
this.spacing = spacing;
this.target = target;

this.ref = null;
}

function writeMenus() {
if (!isDOM && !isIE4 && !isNS4) return;

for (currMenu = 0; currMenu < menu.length; currMenu++) with (menu[currMenu][0]) {

var str = '', itemX = 0, itemY = 0;

for (currItem = 1; currItem < menu[currMenu].length; currItem++) with (menu[currMenu][currItem]) {
var itemID = 'menu' + currMenu + 'item' + currItem;


var w = (isVert ? width : length);
var h = (isVert ? length : width);

if (isDOM || isIE4) {
str += '<div id="' + itemID + '" style="position: absolute; left: ' + itemX + '; top: ' + itemY + '; width: ' + w + '; height: ' + h + '; visibility: inherit; ';
if (backCol) str += 'background: ' + backCol + '; ';
str += '" ';
}
if (isNS4) {
str += '<layer id="' + itemID + '" left="' + itemX + '" top="' + itemY + '" width="' +  w + '" height="' + h + '" visibility="inherit" ';
if (backCol) str += 'bgcolor="' + backCol + '" ';
}
if (borderClass) str += 'class="' + borderClass + '" ';


str += 'onMouseOver="popOver(' + currMenu + ',' + currItem + ')" onMouseOut="popOut(' + currMenu + ',' + currItem + ')">';


str += '<table  width="' + (w - 8) + '" border="0" cellspacing="0" cellpadding="' + (!isNS4 && borderClass ? 2 : 0) + '"><tr><td align="left" height="' + (h - 7) + '">' + '<a class="' + textClass + '" href="' + href + '"' + (frame ? ' target="' + frame + '">' : '>') + text + '</a></td>';
if (target > 0) {



menu[target][0].parentMenu = currMenu;
menu[target][0].parentItem = currItem;


if (popInd) str += '<td class="' + textClass + '" align="right">' + popInd + '</td>';
}
str += '</tr></table>' + (isNS4 ? '</layer>' : '</div>');
if (isVert) itemY += length + spacing;
else itemX += length + spacing;
}
if (isDOM) {
var newDiv = document.createElement('div');
document.getElementsByTagName('body').item(0).appendChild(newDiv);
newDiv.innerHTML = str;
ref = newDiv.style;
ref.position = 'absolute';
ref.visibility = 'hidden';
}


if (isIE4) {
document.body.insertAdjacentHTML('beforeEnd', '<div id="menu' + currMenu + 'div" ' + 'style="position: absolute; visibility: hidden">' + str + '</div>');
ref = getSty('menu' + currMenu + 'div');
}


if (isNS4) {
ref = new Layer(0);
ref.document.write(str);
ref.document.close();
}

for (currItem = 1; currItem < menu[currMenu].length; currItem++) {
itemName = 'menu' + currMenu + 'item' + currItem;
if (isDOM || isIE4) menu[currMenu][currItem].ref = getSty(itemName);
if (isNS4) menu[currMenu][currItem].ref = ref.document[itemName];
   }
}
with(menu[0][0]) {
ref.left = x;
ref.top = y;
ref.visibility = 'visible';
   }
}


var menu = new Array();

var defOver = '#', defBack = '#';

var defLength = 8;

menu[0] = new Array();

menu[0][0] = new Menu(false, '', 1, 120, 37, '#0000A0', '', 'itemBorder', 'itemText'); 

menu[0][1] = new Item('<DIV ALIGN=CENTER>Oral Health <BR>Topics', 'intro_topics.html', '', 80, 1, 1);
menu[0][2] = new Item('<DIV ALIGN=CENTER>Tooth<BR>Care', 'intro1.html', '', 55, 1, 2);
menu[0][3] = new Item(' <DIV ALIGN=CENTER>Dental <BR>Problems', 'abscessed.html', '', 60, 1, 3);
menu[0][4] = new Item(' <DIV ALIGN=CENTER>Treatment', 'cosmetic.html', '', 70, 1, 4);
menu[0][5] = new Item('<DIV ALIGN=CENTER>Pain <BR>Management', 'painoverview.html', '', 85, 1, 5);
menu[0][6] = new Item('<DIV ALIGN=CENTER>Gallery', 'implants.html', '', 65, 1, 6);
menu[0][7] = new Item('<DIV ALIGN=CENTER>Patient <BR>Info', 'visit.html', '', 56, 1, 7);
menu[0][8] = new Item('<DIV ALIGN=CENTER>Our <BR>Office', 'hours.html', '', 50, 1, 8);
menu[0][9] = new Item('<DIV ALIGN=CENTER>Our<BR>Dentist', 'dentist.html', '', 55, 1, 0);
menu[0][10] = new Item('<DIV ALIGN=CENTER>Internet <BR>Coupons', 'coupons.html', '', 70, 1, 0);
menu[0][11] = new Item('<DIV ALIGN=CENTER>Video<BR>Highlights', 'video.html', '', 65, 1, 0);
menu[0][12] = new Item('<DIV ALIGN=CENTER>Home&nbsp;&nbsp;', 'index.html', '', 76, 1 , 0);








menu[1] = new Array();
menu[1][0] = new Menu(true, '', -0, 37, 120, '#00FFFF', '#DFFEFF', 'basicBorder', 'basicText'); 
menu[1][1] = new Item('Introduction', 'intro_topics.html', '', 16, 0, 0);
menu[1][2] = new Item('Fluoride', 'topics_fluoride.html', '', 16, 0, 0);
menu[1][3] = new Item('Fillings', 'topics_fillings.html', '', 16, 0, 0);
menu[1][4] = new Item('Infection Control', 'infection.html', '', 16, 0, 0);
menu[1][5] = new Item('Medication and Heart', 'medication.html', '', 16, 0, 0);
menu[1][6] = new Item('Latex Allergy', 'allergy.html', '', 16, 0, 0);
menu[1][7] = new Item('Age and Oral Health', 'age.html', '', 16, 0, 0);
menu[1][8] = new Item('Tobacco', 'tobacco.html', '', 16, 0, 0);


menu[2]= new Array();
menu[2][0] = new Menu(true, '', -2, 37, 160, '#00FFFF', '#DFFEFF', 'basicBorder', 'basicText');
menu[2][1] = new Item('Overview', 'intro1.html', '', 16, 0, 0);
menu[2][2] = new Item('Brushing', 'brushing.html', '', 16, 0, 0);
menu[2][3] = new Item('Flossing', 'flossing.html', '', 16, 0, 0);
menu[2][4] = new Item('Fluoride Facts', 'fluorid.html', '', 16, 0, 0);
menu[2][5] = new Item('Mouth Rinses', 'rinses.html', '', 16, 0, 0);
menu[2][6] = new Item('Sealants', 'sealants.html', '', 16, 0, 0);

menu[2][7] = new Item('X-Rays', 'xrays.html', '', 16, 0, 0);
menu[2][8] = new Item('Denture Care', 'dentcare.html', '', 16, 0, 0);
menu[2][9] = new Item('Prevention Tips for Children', 'prevention.html', '', 16, 0, 0);
menu[2][10] = new Item('Seniors and Oral Health', 'seniors.html', '', 16, 0, 0);
menu[2][11] = new Item('Nutrition and Your Teeth', 'nutrition.html', '', 16, 0, 0);


menu[3] = new Array();
menu[3][0] = new Menu(true, '', -2, 37, 150, '#00FFFF', '#DFFEFF', 'basicBorder', 'basicText');
menu[3][1] = new Item('Abscessed Tooth', 'abscessed.html', '', 16, 0, 0);
menu[3][2] = new Item('Bad Breath', 'breath.html', '', 16, 0, 0);
menu[3][3] = new Item('Bulimia Nervosa', 'bulimia.html', '', 16, 0, 0);
menu[3][4] = new Item('Canker/Cold Sores', 'canker.html', '', 16, 0, 0);
menu[3][5] = new Item('Cavities and Tooth Decay', 'decay.html', '', 16, 0, 0);
menu[3][6] = new Item('Diabetes', 'diabetes.html', '', 16, 0, 0);
menu[3][7] = new Item('Dry Mouth', 'dry.html', '', 16, 0, 0);
menu[3][8] = new Item('Fluorosis', 'fluorosis.html', '', 16, 0, 0);
menu[3][9] = new Item('Gum Disease (Gingivitis)', 'gumdis.html', '', 16, 0, 0);
menu[3][10] = new Item('Impacted/Wisdom Teeth', 'wisdom.html', '', 16, 0, 0);
menu[3][11] = new Item('Jaw Disorders', 'jaw.html', '', 16, 0, 0);
menu[3][12] = new Item('Lacerations and Cuts', 'lacerations.html', '', 16, 0, 0);
menu[3][13] = new Item('Oral Cancer', 'cancer.html', '', 16, 0, 0);
menu[3][14] = new Item('Plaque', 'plaque.html', '', 16, 0, 0);
menu[3][15] = new Item('Sensitive Teeth', 'sensitive.html', '', 16, 0, 0);
menu[3][16] = new Item('Teeth Grinding', 'grinding.html', '', 16, 0, 0);
menu[3][17] = new Item('Toothaches', 'toothaches.html', '', 16, 0, 0);


menu[4] = new Array();
menu[4][0] = new Menu(true, '', -2, 37, 170, '#00FFFF', '#DFFEFF', 'basicBorder', 'basicText');
menu[4][1] = new Item('Cosmetic Dentistry', 'cosmetic.html', '', 16, 0, 0);  
menu[4][2] = new Item('Non-Surgical Braces', 'service_braces.html', '', 16, 0, 0); 
menu[4][3] = new Item('Sealants', 'sealants1.html', '', 16, 0, 0); 
menu[4][4] = new Item('Missing Teeth', 'missing.html', '', 16, 0, 0);
menu[4][5] = new Item('Bridges', 'bridges.html', '', 16, 0, 0);
menu[4][6] = new Item('Crowns and Veneers', 'crowns.html', '', 16, 0, 0);
menu[4][7] = new Item('Root Canal Therapy', 'root.html', '', 16, 0, 0);
menu[4][8] = new Item('Extractions', 'extraction.html', '', 16, 0, 0);
menu[4][9] = new Item('Dental Implants', 'service_implants.html', '', 16, 0, 0);
menu[4][10] = new Item('Scaling and Root Planing', 'scaling.html', '', 16, 0, 0);
menu[4][11] = new Item('Gum Surgery', 'gum.html', '', 16, 0, 0);
menu[4][12] = new Item('Dentures', 'dentures.html', '', 16, 0, 0);
menu[4][13] = new Item('Jaw/TMJ', 'service_jaw.html', '', 16, 0, 0);
menu[4][14] = new Item('Full Mouth Reconstruction', 'reconstruc.html', '', 16, 0, 0);






menu[5] = new Array();
menu[5][0] = new Menu(true, '', -2, 37, 160, '#00FFFF', '#DFFEFF', 'basicBorder', 'basicText');

menu[5][1] = new Item('Overview', 'painoverview.html', '', 17, 0, 0);
menu[5][2] = new Item('Managing Pain', 'painmanaging.html', '', 17, 0, 0);
menu[5][3] = new Item('Anesthesia', 'painanesthesia.html', '', 17, 0, 0);

menu[5][4] = new Item('Medications', 'painmedications.html', '', 17, 0, 0);



menu[6] = new Array();
menu[6][0] = new Menu(true, '', -2, 37, 160, '#00FFFF', '#DFFEFF', 'basicBorder', 'basicText');
menu[6][1] = new Item('Dental Implants', 'implants.html', '', 16, 0, 0);
menu[6][2] = new Item('Non-Surgical Braces', 'braces.html', '', 16, 0, 0);
menu[6][3] = new Item('Cosmetic Dentistry (Veneers)', 'veneers.html', '', 16, 0, 0);
menu[6][4] = new Item('Full Mouth Reconstruction', 'full_mouth.html', '', 16, 0, 0);


menu[7] = new Array();
menu[7][0] = new Menu(true, '', -2, 37, 110, '#00FFFF', '#DFFEFF', 'basicBorder', 'basicText');
menu[7][1] = new Item('First Visit', 'visit.html','', 16, 0, 0);
menu[7][2] = new Item('Patient Comfort', 'comfort.html','', 16, 0, 0);
menu[7][3] = new Item('Financial', 'financial.html','', 16, 0, 0);



menu[8] = new Array();
menu[8][0] = new Menu(true, '', -74, 37, 125, '#00FFFF', '#DFFEFF', 'basicBorder', 'basicText');
menu[8][1] = new Item('Office Hours','hours.html', '', 16, 0, 0);
menu[8][2] = new Item('Location & Directories','location.html', '', 16, 0, 0);
menu[8][3] = new Item('Appointments','appointments.html', '', 16, 0, 0);
menu[8][4] = new Item('Emergency Care','emergency.html', '', 16, 0, 0);









var popOldWidth = window.innerWidth;
nsResizeHandler = new Function('if (popOldWidth != window.innerWidth) location.reload()');



if (isNS4) document.captureEvents(Event.CLICK);
document.onclick = clickHandle;

function clickHandle(evt)
{
 if (isNS4) document.routeEvent(evt);
 hideAllBut(0);
}


//  End -->

