// HOME NAVIGATION
// MOUSE OVER LOGIC
// AUTHOR: Todd M. Reith, todd@bluehonu.com
// DATE: Monday, September 30, 2002 4:22:32 PM



SELECTOR_ON        = new Image(13,14);
SELECTOR_ON.src    = "../../images/profile/selector.gif";
SELECTOR_OFF       = new Image(13,14);
SELECTOR_OFF.src   = "../../images/profile/selector_blank.gif";

CONTACT_OFF        = new Image(120,170);
CONTACT_OFF.src    = "../../images/profile/selector_blank.gif";    

GENMGR_ON          = new Image(120,170);
GENMGR_ON.src      = "../../images/profile/PHOTO-1.jpg";

DIRSALESMKT_ON     = new Image(120,170);
DIRSALESMKT_ON.src = "../../images/profile/brown_SM.jpg";

BUSMGR_ON          = new Image(120,170);
BUSMGR_ON.src      = "../../images/profile/kanoy_sm.jpg";

DIROPPS_ON         = new Image(120,170);
DIROPPS_ON.src     = "../../images/profile/scott_sm.jpg"; 

DIREVENTS_ON       = new Image(120,170);
DIREVENTS_ON.src   = "../../images/profile/ken_sm.jpg";

EVENTMGR_ON       = new Image(120,170);
EVENTMGR_ON.src   = "../../images/profile/J_KING_SM.jpg";

TECHSVCMGR_ON      = new Image(120,170);
TECHSVCMGR_ON.src  = "../../images/profile/george_sm.jpg"; 

SALESMGR1_ON       = new Image(120,170);
SALESMGR1_ON.src   = "../../images/profile/OPConv_img016_sm.jpg"; 

SALESMGR2_ON       = new Image(120,170);
SALESMGR2_ON.src   = "../../images/profile/erin_sm.jpg";

SALESMGR3_ON       = new Image(120,170);
SALESMGR3_ON.src   = "../../images/profile/OPConv_img004_sm.jpg";     

SALESCORD_ON       = new Image(120,170);
SALESCORD_ON.src   = "../../images/profile/Tara_Franklin.jpg";


MKTMGR_ON          = new Image(120,170);
MKTMGR_ON.src      = "../../images/profile/PHOTO-4.jpg";

ADMINASS_ON        = new Image(120,170);
ADMINASS_ON.src    = "../../images/profile/OPConv_img019_sm.jpg";

//new additions 04-01-2003 TMR
EVENTMGR2_ON       = new Image(120,170);
EVENTMGR2_ON.src   = "../../images/profile/V_LITTLE_SM.jpg";

EVENTSRVCLK_ON     = new Image(120,170);
EVENTSRVCLK_ON.src = "../../images/profile/PHOTO-2.jpg";

EVENTSRVMGR_ON     = new Image(120,170);
EVENTSRVMGR_ON.src = "../../images/profile/PHOTO-6.jpg";

AVMGR_ON           = new Image(120,170);
AVMGR_ON.src       = "../../images/profile/PHOTO-5.jpg";

EXHIBITOR_ON       = new Image(120,170);
EXHIBITOR_ON.src   = "../../images/profile/J_MEGARIS_SM.jpg";




var contactInfoArray  = new Array(17);  
// body

contactInfoArray[0]   = new Array("Kelvin Moore","General Manager<br><br>","kmoore@opconventioncenter.com","913-339-3000");
contactInfoArray[1]   = new Array("Kurt Brown","Director of Sales & Marketing<br>All markets that have 500 rooms and up on peak night.","kbrown@opconventioncenter.com","913-339-3000");
contactInfoArray[2]   = new Array("Jeanne Kanoy","Business Manager<br><br>","jkanoy@opconventioncenter.com","913-339-3000");
contactInfoArray[3]   = new Array("Scott Kavanaugh","Director of Operations<br><br>","skavanaugh@opconventioncenter.com","913-339-3000");
contactInfoArray[4]   = new Array("Ken Gillespie","Director of Events<br><br>","kgillespie@opconventioncenter.com","913-339-3000");
contactInfoArray[5]   = new Array("Jennifer King","Event Manager<br><br>","jking@opconventioncenter.com","913-339-3000");
contactInfoArray[6]   = new Array("George Middleton","Technical Services Manager<br><br>","gmiddleton@opconventioncenter.com","913-339-3000");
contactInfoArray[7]   = new Array("Amy Worden","Sales Manager<br><br>","aworden@opconventioncenter.com","913-339-3000");
contactInfoArray[8]   = new Array("Erin Ferriter","Sales Manager<br><br>","eferriter@opconventioncenter.com","913-339-3000");
contactInfoArray[9]   = new Array("Tracy Roberts","Sales Manager<br><br>","troberts@opconventioncenter.com","913-339-3000");
contactInfoArray[10]  = new Array("Tara Franklin","Sales Coordinator<br><br>","tfranklin@opconventioncenter.com","913-339-3000");
contactInfoArray[11]  = new Array("Brandi Yoxall","Marketing Manager<br><br>","byoxall@opconventioncenter.com","913-339-3000");
contactInfoArray[12]  = new Array("Carrie Daugherty","Administrative Assistant<br><br>","cdaugherty@opconventioncenter.com","913-339-3000");

//new additions 04-01-2003 TMR
contactInfoArray[13]  = new Array("Vanessa Little","Event Manager<br><br>","vlittle@opconventioncenter.com","913-339-3000");
contactInfoArray[14]  = new Array("Stacia Knipp","Event Manager<br><br>","sknipp@opconventioncenter.com","913-339-3000");
contactInfoArray[15]  = new Array("Michael Krichinsky","Audiovisual Manager<br><br>","michaelk@vaecorp.com","913-234-2170");
contactInfoArray[16]  = new Array("Jenifer Megaris","<br>Receptionist<br>","jmegaris@opconventioncenter.com","913-339-3000");
contactInfoArray[17]  = new Array("Tracie Breneman","<br>Event Services Coordinator<br>","tschaefer@opconventioncenter.com","913-339-3000");

     

function insertContactInfo(id) {

  var html = "";
  html = html + contactInfoArray[id][0] + ", " + contactInfoArray[id][1] + "<br>";
  html = html + "<br><br>";
  html = html + "email: <a href=\"mailto:" +  contactInfoArray[id][2] + "\">" + contactInfoArray[id][2] + "</a><br>";
  html = html + "voice: " + contactInfoArray[id][3];
  
  
  
    if(document.all) {
      // Internet Explorer model
      CONTACTTXT.innerHTML = html;
    }  else if(document.layers) {
      // Navigator 4 model
      var divObject = document.CONTACTTXT.document;
      divObject.open();
      divObject.write('<span class="photoTxtCopy">' + html + '</span>');
      divObject.close();
    } else if (document.getElementById ) {
     // NS6
     document.getElementById("CONTACTTXT").innerHTML = html;
    }

}


function hiLite(imgDocID,imgObjName) {

  document.images[imgDocID].src = eval(imgObjName + ".src");
  

}
