<!--

///////////////////////////////////////////////////////////////////////////////
//   ..:: realMenu v1.27 ::..
// copyright © jordan neill 2000
// Script featured on JavaScript Kit (http://javascriptkit.com)
//
// change the menuItems array with your options and set the urls to link to
//  use addMenuItem("Text to show", "Url To Link To"); to make an item
//  use addMenuItem("Text", Url", "Img To Show"); to make an item with an image
//  use addMenuItem(); to indicate a separator bar
//  you can use html tags in the text, eg, <em>, <strong> or 
//
// images used should be 16x16 transparent gifs
///////////////////////////////////////////////////////////////////////////////

 menuItems = new Array();
 menuItemNum = 0;

 function addMenuItem(text, url, img){
  if(img) menuItems[menuItemNum] = new Array(text, url, img);
  else if(text) menuItems[menuItemNum] = new Array(text, url);
  else menuItems[menuItemNum] = new Array();
  menuItemNum++;
 }

 menuWidth = 126; //menu width
 menuHeight = 390; //menu height
 menuDelay = 50; //delay before menu appears
 menuSpeed = 8; //speed which menu appears (lower=faster)
 menuOffset = 2; //offset of menu from mouse pointer
 

 addMenuItem("Wright Home","http://www.wrightrealtors.com/index.htm","http://www.wrightrealtors.com/menuimages/home.gif");
 addMenuItem("Print","javascript:window.print()","http://www.wrightrealtors.com/menuimages/print.gif");
 addMenuItem("Back","javascript:history.go(-1)","http://www.wrightrealtors.com/menuimages/back.gif");
 addMenuItem("Forward","javascript:history.go(1)","http://www.wrightrealtors.com/menuimages/forward.gif");
 addMenuItem("Refresh","javascript:history.go(1)","http://www.wrightrealtors.com/menuimages/browser.gif");
 addMenuItem();
 addMenuItem("Airports","http://www.wrightrealtors.com/links/airports/airports.htm");
 addMenuItem("Birds","http://www.wrightrealtors.com/links/birds/birds.htm");
 addMenuItem("Biography","http://www.wrightrealtors.com/links/bios/bios.htm");
 addMenuItem("Communities","http://www.wrightrealtors.com/links/city/city.htm");
 addMenuItem("Colleges","http://www.wrightrealtors.com/links/colleges/colleges.htm");
 addMenuItem("Current Events","http://www.wrightrealtors.com/links/current.htm");
 addMenuItem("Facts & Trivia","http://www.wrightrealtors.com/links/facts/facts.htm");
 addMenuItem("Flags","http://www.wrightrealtors.com/links/flags/flag.htm");
 addMenuItem("Flowers","http://www.wrightrealtors.com/links/flower/flower.htm");
 addMenuItem("Kids","http://www.wrightrealtors.com/Kids-Web-Page.htm");
 addMenuItem("Newspapers","http://www.wrightrealtors.com/news/news.htm");
 addMenuItem("Real Estate","http://www.wrightrealtors.com/realestate/realestate.htm");
 addMenuItem("Songs","http://www.wrightrealtors.com/links/song/song.htm");
 addMenuItem("Sports","http://www.wrightrealtors.com/links/sports/sports.htm");
 addMenuItem("States","http://www.wrightrealtors.com/national_listings.htm");
 addMenuItem("Symbols","http://www.wrightrealtors.com/links/resources/resources.htm");
 addMenuItem("Trees","http://www.wrightrealtors.com/links/tree/tree.htm");

 ///////////////////////////////////////////////////////////////////////////////
 // do not edit the code below, it is required for the menu to work correctly
 ///////////////////////////////////////////////////////////////////////////////


 if(window.navigator.appName == "Microsoft Internet Explorer" && window.navigator.appVersion.substring(window.navigator.appVersion.indexOf("MSIE") + 5, window.navigator.appVersion.indexOf("MSIE") + 8) >= 5.5)
  isIe = 1;
 else
  isIe = 0;

 if(isIe){
  menuContent = '<table id="rightMenu" width="0" height="0" cellspacing="0" cellpadding="0" style="font:menu;color:menutext;"><tr height="1"><td style="background:gray" colspan="4"></td><td style="background:gray"></td></tr><tr height="1"><td style="background:gray"></td><td style="background:gray" colspan="2"></td><td style="background:gray"></td><td style="background:gray"></td></tr><tr height="10"><td style="background:gray"></td><td style="background:gray"></td><td style="background:#bbd1df"><table cellspacing="0" cellpadding="0" nowrap style="font:menu;color:menutext;cursor:default;">';
  for(m=0;m<menuItems.length;m++){
   if(menuItems[m][0] && menuItems[m][2])
    menuContent += '<tr height="17" onMouseOver="this.style.background=\'#3f6bac\';this.style.color=\'highlighttext\';" onMouseOut="this.style.background=\'#bbd1df\';this.style.color=\'menutext\';" onClick="parent.window.location.href=\'' + menuItems[m][1] + '\'"><td style="background:#bbd1df" width="1" nowrap></td><td width="21" nowrap><img src="' + menuItems[m][2] + '"></td><td nowrap>' + menuItems[m][0] + '</td><td width="21" nowrap></td><td style="background:#bbd1df" width="1" nowrap></td></tr>';
   else if(menuItems[m][0])
    menuContent += '<tr height="17" onMouseOver="this.style.background=\'#3f6bac\';this.style.color=\'highlighttext\';" onMouseOut="this.style.background=\'#bbd1df\';this.style.color=\'menutext\';" onClick="parent.window.location.href=\'' + menuItems[m][1] + '\'"><td style="background:#bbd1df" width="1" nowrap></td><td width="21" nowrap></td><td nowrap>' + menuItems[m][0] + '</td><td width="21" nowrap></td><td style="background:#bbd1df" width="1" nowrap></td></tr>';
   else
    menuContent += '<tr><td colspan="5" height="4"></td></tr><tr><td colspan="5"><table cellspacing="0"><tr><td width="2" height="1"></td><td width="0" height="1" style="background:gray"></td><td width="2" height="1"></td></tr><tr><td width="2" height="1"></td><td width="100%" height="1" style="background:gray"></td><td width="2" height="1"></td></tr></table></td></tr><tr><td colspan="5" height="3"></td></tr>';
  }
  menuContent += '</table></td><td style="background:gray"></td><td style="background:gray"></td></tr><tr height="1"><td style="background:gray"></td><td style="background:gray"></td><td style="background:#bbd1df"></td><td style="background:gray"></td><td style="background:gray"></td></tr><tr height="1"><td style="background:gray"></td><td style="background:gray" colspan="3"></td><td style="background:gray"></td></tr><tr height="1"><td style="background:gray" colspan="5"></td></tr></table>';

  menuPopup = window.createPopup();
  menuPopup.document.body.innerHTML = menuContent;
 }

 function showMenu(){
  menuXPos = event.clientX + menuOffset;
  menuYPos = event.clientY + menuOffset;

  menuXIncrement = menuWidth / menuSpeed;
  menuYIncrement = menuHeight / menuSpeed;

  menuTimer = setTimeout("openMenu(0,0)", menuDelay);

  return false;
 }


 function openMenu(height, width){
  iHeight = height;
  iWidth = width;

  menuPopup.show(menuXPos, menuYPos, iWidth, iHeight, document.body);

  if(iHeight < menuHeight)
   menuTimer = setTimeout("openMenu(iHeight + menuYIncrement, iWidth + menuXIncrement)", 1);
  else
   clearTimeout(menuTimer);
 }


 if(isIe) document.oncontextmenu = showMenu;




//-->