ÿþ<html> <HEAD> <style type="text/css"> #dropmenudiv{ position:absolute; border:1px solid black; border-bottom-width: 0; font:normal 12px Verdana; line-height:18px; z-index:100; } #dropmenudiv a{ width: 100%; display: block; text-indent: 3px; border-bottom: 1px solid black; padding: 1px 0; text-decoration: none; font-weight: bold; } #dropmenudiv a:hover{ /*hover background color*/ background-color: yellow; } </style> <script type="text/javascript"> /*********************************************** * AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ //Contents for menu 1 var menu1=new Array() //Contents for menu 2, and so on var menu2=new Array() menu2[0]='<a href="testimonials.htm">Testimonials</a>' menu2[1]='<a href="faqs.htm">FAQs</a>' menu2[2]='<a href="multimedia.htm">Multimedia</a>' menu2[3]='<a href="guides.htm">Our Tour Guides</a>' menu2[4]='<a href="contactus.htm">Contact Us</a>' var menu3=new Array() menu3[0]='<a href="hajj09.htm">Canadian Package</a>' menu3[1]='<a href="chr09.pdf">Canadian Registration</a>' menu3[2]='<a href="hajj09a.htm">U.S Package</a>' menu3[3]='<a href="uhr09.pdf">U.S Registration</a>' menu3[4]='<a href="packagedetails.pdf">Package Details</a>' var menu4=new Array() menu4[0]='<a href="umrapackages.htm">Umra Packages</a>' menu4[1]='<a href="umrahrequirements.htm">Requirements</a>' menu4[2]='<a href="">Umrah Registration</a>' menu4[3]='<a href="umrahservices.htm">Umrah Services</a>' var menu6=new Array() menu6[0]='<a href="">Morocco March 2009. Details to be released soon.</a>' menu6[1]='<a href="">Turkey October 2009. Details to be released soon.</a>' menu6[2]='<a href="">Muslim India December 2009. Details to be released soon.</a>' var menu7=new Array() menu7[0]='<a href="resources1.htm">Hajj</a>' menu7[1]='<a href="resources2.htm">Quran</a>' menu7[2]='<a href="resources3.htm">Visiting Madina</a>' menu7[3]='<a href="resources4.htm">Fiqh</a>' menu7[4]='<a href="resources5.htm">Hajj Health</a>' menu7[5]='<a href="resources6.htm">Audio</a>' menu7[6]='<a href="resources7.htm">Video</a>' menu7[7]='<a href="resources8.htm">Dua & Dhikr</a>' var menuwidth='165px' //default menu width var menubgcolor='white' //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="-500px" 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 </script> <STYLE> <!-- A{text-decoration:none} --> </STYLE> <script language="JavaScript1.1"> <!-- //***************************************** // Blending Image Slide Show Script- // © Dynamic Drive (www.dynamicdrive.com) // For full source code, visit http://www.dynamicdrive.com/ //***************************************** //specify interval between slide (in mili seconds) var slidespeed=3000 //specify images var slideimages=new Array("hajjpic1.JPG","hajjpic2.JPG","hajjpic3.jpg","hajjpic4.jpg") //specify corresponding links var imageholder=new Array() var ie=document.all for (i=0;i<slideimages.length;i++){ imageholder[i]=new Image() imageholder[i].src=slideimages[i] } function gotoshow(){ if (newwindow) window.open(slidelinks[whichlink]) else window.location=slidelinks[whichlink] } //--> </script> </HEAD> <TITLE> Peace and Blessings be upon him... </TITLE> <BODY BGCOLOR="black"> <div id="Layer1" style="position:absolute; left:30px; top:5px; z-index:1"> <CENTER> <IMG SRC="blank.JPG"> <BR><BR> <FONT FACE="verdana" COLOR="white" SIZE="-2">Design by Sanad.ca</FONT SIZE="-2"> <BR><BR><BR><BR> </CENTER> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:550px; top:175px; z-index:1"> <IMG SRC="trusttour4.jpg"> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:501px; top:73px; width:600px; z-index:1"> <B> <A HREF="index.html"><FONT FACE="times new roman" SIZE="-1" COLOR="black">HOME</a> &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp <a href="default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu2, '150px')" onMouseout="delayhidemenu()"><FONT SIZE="-1" COLOR="black">ABOUT US</a> &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp <a href="default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu3, '150px')" onMouseout="delayhidemenu()"><FONT SIZE="-1" COLOR="black">HAJJ</a> &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp <a href="default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu4, '150px')" onMouseout="delayhidemenu()"><FONT SIZE="-1" COLOR="black">UMRAH</a> &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp <a href="default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu7, '150px')" onMouseout="delayhidemenu()"><FONT SIZE="-1" COLOR="black">HAJJ RESOURCES</A> </B> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:500px; top:75px; width:600px; z-index:1"> <B> <A HREF="index.html"><FONT FACE="times new roman" SIZE="-1" COLOR="white">HOME</a> &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp <a href="default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu2, '150px')" onMouseout="delayhidemenu()"><FONT SIZE="-1" COLOR="white">ABOUT US</a> &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp <a href="default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu3, '150px')" onMouseout="delayhidemenu()"><FONT SIZE="-1" COLOR="white">HAJJ</a> &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp <a href="default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu4, '150px')" onMouseout="delayhidemenu()"><FONT SIZE="-1" COLOR="white">UMRAH</a> &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp <a href="default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu7, '150px')" onMouseout="delayhidemenu()"><FONT SIZE="-1" COLOR="white">HAJJ RESOURCES</A> </B> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:91px; top:249px; width:950px; z-index:1"> <FONT FACE="verdana" COLOR="999999" SIZE="+3">TURKEY & MOROCCO <BR> </FONT COLOR="999999" SIZE="+2"> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:90px; top:250px; width:950px; z-index:1"> <FONT FACE="verdana" COLOR="990000" SIZE="+3">TURKEY & MOROCCO <BR> </FONT COLOR="990000" SIZE="+2"> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:480px; top:684px; z-index:1"> <FONT SIZE="-2" COLOR="black" FACE="verdana"> Per Person Double <BR><BR> Single Supplement <BR><BR> Turkey or Morocco only </FONT SIZE="-2" COLOR="black" FACE="verdana"> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:630px; top:659px; z-index:1"> <FONT SIZE="-2" COLOR="black" FACE="verdana"> <B>CAD$</B> <BR><BR> $3,499.00 IST/CMN/FEZ <BR><BR> $350 <BR><BR> $2,499.00 </FONT SIZE="-2" COLOR="black" FACE="verdana"> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:780px; top:659px; z-index:1"> <FONT SIZE="-2" COLOR="black" FACE="verdana"> <B>US$</B> <BR><BR> $3,499.00 IST/CMN/FEZ <BR><BR> $350 <BR><BR> $2,499.00 </FONT SIZE="-2" COLOR="black" FACE="verdana"> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:610px; top:775px; z-index:1"> <FONT SIZE="-2" COLOR="black" FACE="verdana"> <B><I>Deposit due by April 30, 2010</I></B> </FONT SIZE="-2" COLOR="black" FACE="verdana"> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:690px; top:860px; z-index:1"> <IMG WIDTH="200" SRC="trusttour2.jpg"> <BR><BR><BR><BR><BR> <IMG WIDTH="200" SRC="trusttour3.jpg"> <BR><BR><BR><BR><BR> <IMG WIDTH="200" SRC="trusttour1.jpg"> <BR><BR><BR><BR><BR> <IMG WIDTH="200" SRC="logo.jpg"> <BR> <IMG WIDTH="200" SRC="tico.jpg"> <BR> <FONT COLOR="black"> G.T. Services TICO REG. 01906454 </FONT COLOR="black"> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:90px; top:300px; width:560px; z-index:1"> <FONT COLOR="black" FACE="verdana"> <FONT SIZE="+1"> <I><B>SACRED TRUSTS TOUR</B></I> </FONT SIZE="+1"> <BR><BR> <I>June 17th to July 1st 2010</I> <BR><BR> For info call: Arif or Rafeek Assim <BR> 1-888-814-UMRA <BR><BR> Click <A HREF="http://www.saudiaramcoworld.com/issue/200605/suleymaniye/default.htm" target="_blank"><U><B><FONT COLOR="black">here</B></U></A> for the virtual tour of the Suleymaniye Mosque. <BR><BR><BR><BR> Sacred Tours invites you to join us on the Sacred Trusts Tour 2010. Our tour begins in Istanbul, Turkey, labeled as the cradle of civilization. Known to be the cultural link between Europe and Asia, Turkey is an alluring, charismatic and intriguing land. Home to some of the most treasured Sacred Relics of the Prophet Muhammad (SAS), join us and discover its swirling domes, towering minarets and natural beauty. Our tour will then take us to Morocco where Islamic culture has dominated it architecture for over a thousand years. Morocco, a marvel of sights and sounds with its minarets, honeycombed alleys and labyrinthine souks. A truly diverse society, Morocco is a point of convergence for African, Arab, and Mediterranean cultures. Today, this rich and diverse history is evident in the peaceful mingling of different ethnicities, faiths, dialects, and cuisines. <BR><BR><BR> <B>TENTATIVE TRIP PROFILE</B> <BR><BR> <li>International Flight: Toronto-Istanbul-Casablanca <BR> <li>6 nights in Istanbul <BR> <li>2 nights in Marrakesh <BR> <li>4 nights in Fes <BR> <li>1 night in Casablanca <BR> <li>Daily breakfast and lunch or dinner <BR> <li>Ground transportation in deluxe coaches. <BR> <li>Guided historic tours in each city. <BR> <li>Dedicated group leader. <BR> <li>Shop the cities local markets <BR> <li>Visa fees and processing and administration included. <BR> <li>Superb accommodations <BR> <li>Exotic cuisine <BR><BR> <I>Space is limited, register early to secure your spot.</I> <BR><BR><BR> JUN 17 THU-DEPART TORONTO <BR> Meet your tour guide at Pearson and board your flight to Istanbul. <BR><BR> JUN 18 FRI ISTANBUL (D) <BR> Late afternoon arrival. Transfer to the hotel, settle in, have dinner and explore the city in the evening. <BR><BR> JUN 19 SAT ISTANBUL (B,L) <BR> Full day tour of the Topikapi Palace where the Sacred Trusts are held. The Blue Mosque, Imperial Treasury, Baghdad Kiosk, St. Sophia, Imperial Armory. <BR><BR> JUN 20 SUN ISTNABUL BOSPHORUS (B,L,D) <BR> Visit the Abu Ayub Ansari Mosque and take short cruise on the Bosphorus Strait that divides Asia and Europe. Visit some of the most elegant palaces. <BR><BR> JUN 21 MON YALOV  BURSA (B,L,D) <BR> After breakfast, take the ferry to Yalova, then to the Ottoman Capital of Bursa. Visit the Green Mosque and Green Mausoleum, then visit the Koza Han which for centuries was the center of silk trade. <BR><BR> JUN 22 TUE ISTANBUL (B,D) <BR> Spend the day in shopping and preparing for your next days departure. Group Dinner. <BR><BR> JUN 23 WED FEZ (B,D) <BR> Arrive in Casablanca . Have late afternoon lunch in the city and take our First Class train or Private Coach to Fez. <BR><BR> JUN 24 THU FEZ (B,L) <BR> Half day walking tour to include Qarrawiyyin, Mosques, Madressas, Zawiyas and other historical sites. Free afternoon to shop. <BR><BR> JUN 25 FRI FEZ (B,L) Prepare for Juma in the Qarawiyyin. Then Visit the Imam Malik Mosque for Maghrib. Continue the second half day tour of the city. <BR><BR> JUN 26 SAT FEZ (B,L) <BR> Early morning departure Moulay Idriss a day trip to Meknez, , and the Roman ruins of Volubilis. <BR><BR> JUN 27 SUN MARRAKESH(B,L,D) <BR> Morning departure to Marrakesh, passing through the mid Atlas town of Azrou and Beni Mellal the market center of the Atlas Mountain region. <BR><BR> JUN 28 MON MARRAKESH (B,L,D) <BR> Begin the day with a walking tour of the Koutoubia Mosque and the Madressa Ali Ben Youseff. In the afternoon visit the Menara Gardens and other historic sites. <BR><BR> JUN 29 TUE CASABLANCA (B,D) <BR> Conclude the tour in Casablanca with a walking tour of the Magnificent Hassan II Mosque. Group Dinner. <BR><BR> JUN 30 WED CASBLANCA-ISTANBUL <BR> Depart Casablanca for Istanbul, where you will return for one night. <BR><BR> JUL 1 THU ISTANBUL TORONTO <BR> Welcome back to Toronto. <BR><BR><BR><BR><BR><BR><BR><BR> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:50px; top:1900px; z-index:1"> <IMG WIDTH="876" SRC="trusttour5.JPG"> <BR><BR> <IMG WIDTH="876" SRC="trusttour6.JPG"> </TD></TR></TABLE></div> </BODY>