var topDropInfos = { africanTopDrop: { title: "African Safaris", content: "EWT\'s African Safaris include many trips we operate directly, many we resell from the best local African companies, and our \"Brand Name Challenges\" which replicate the most popular safaris from larger worldwide companies but at greatly reduced prices. This unique collection of itineraries is the result of our nearly half century of experience providing the most reliable and exciting safaris in the world." }, worldwideTopDrop: { title: "Worldwide Tours", content: "Travel is a passion with those who have dedicated their lives to it as a business, and what used to be called \"perks\" in the industry is now your chance to join an EWT owner or employee on their very own dream trips. Needless to say, with an EWT owner or employee by your side, the quality and operation of the program is guaranteed!" }, consultingTopDrop: { title: "EWT Travel Consulting Services", content: "In this modern internet age, consumers are the new travel experts. The old schooled travel agents are finding it difficult to catch up. New models are required for travel selling and representation which include shared investing in the final sale. EWT Travel Consulting knows exactly how to help." } } var targetSlides = { africanTopDrop: 0, worldwideTopDrop: 1, consultingTopDrop: 2 } function setupHome(){ var targetSlide = 0; var africanTopDrop; if((africanTopDrop = document.getElementById("AfricanTopDrop"))){ africanTopDrop.onmouseover = function(){home.slideOver(targetSlides.africanTopDrop, topDropInfos.africanTopDrop.title, topDropInfos.africanTopDrop.content);}; africanTopDrop.onmouseout = function(){home.slideOut(targetSlides.africanTopDrop);}; targetSlides.africanTopDrop = targetSlide; targetSlide++; } var worldwideTopDrop; if((worldwideTopDrop = document.getElementById("WorldwideTopDrop"))){ worldwideTopDrop.onmouseover = function(){home.slideOver(targetSlides.worldwideTopDrop, topDropInfos.worldwideTopDrop.title, topDropInfos.worldwideTopDrop.content);}; worldwideTopDrop.onmouseout = function(){home.slideOut(targetSlides.worldwideTopDrop);}; targetSlides.worldwideTopDrop = targetSlide; targetSlide++; } var consultingTopDrop; if((consultingTopDrop = document.getElementById("ConsultingTopDrop"))){ consultingTopDrop.onmouseover = function(){home.slideOver(targetSlides.consultingTopDrop, topDropInfos.consultingTopDrop.title, topDropInfos.consultingTopDrop.content);}; consultingTopDrop.onmouseout = function(){home.slideOut(targetSlides.consultingTopDrop);}; targetSlides.consultingTopDrop = targetSlide; targetSlide++; } }