ÿþ<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="blank1.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:600px; top:175px; z-index:1"> <a href="javascript:gotoshow()"><img src="hajjpic1.JPG" name="slide" border=0 style="filter:blendTrans(duration=3)"></a> <script language="JavaScript1.1"> <!-- var whichlink=0 var whichimage=0 var blenddelay=(ie)? document.images.slide.filters[0].duration*1000 : 0 function slideit(){ if (!document.images) return if (ie) document.images.slide.filters[0].apply() document.images.slide.src=imageholder[whichimage].src if (ie) document.images.slide.filters[0].play() whichlink=whichimage whichimage=(whichimage<slideimages.length-1)? whichimage+1 : 0 setTimeout("slideit()",slidespeed+blenddelay) } slideit() //--> </script> </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:100px; top:240px; z-index:1"> <FONT SIZE="-1" FACE="Georgia" COLOR="333333"><I><B> "Proclaim thou unto all people the duty of pilgrimage: <BR> they will come to unto thee on foot and on every kind of mount, <BR> coming from every far-away point on earth, so that they might <BR> experience much that shall be of benefit to them, and that might <BR> extol the name of God on the days appointed..." [Qur'an 22: 27-28]</B> </FONT SIZE="-1"></I> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:91px; top:349px; width:950px; z-index:1"> <FONT FACE="verdana" COLOR="999999" SIZE="+2">Sacred Tours 2010 Deluxe Hajj Package <BR> Price: $7499.00 </FONT COLOR="999999" SIZE="+2"> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:90px; top:350px; width:950px; z-index:1"> <FONT FACE="verdana" COLOR="990000" SIZE="+2">Sacred Tours 2010 Deluxe Hajj Package <BR> Price: $7499.00 </FONT COLOR="990000" SIZE="+2"> </TD></TR></TABLE></div> <div id="Layer1" style="position:absolute; left:90px; top:440px; width:950px; z-index:1"> <FONT COLOR="black" FACE="verdana"> <FONT SIZE="-1"> <FONT SIZE="+1"><B>Sacred Tours Deluxe Package</B></FONT SIZE="+1"> <BR><BR> <li> Tentative departure November 1 to November 21, 2010 <BR> <li> Toronto/Jeddah/Toronto <BR> <li> One-way flight Jeddah/Madinah <BR> <li> 5 nights in the prestigious Makkah Hilton Towers in front of the Haram <BR> &nbsp &nbsp (http://www1.hilton.com/en_US/hi/hotel/MAKHITW-Makkah-Hilton-Hotel/index.do <BR> <li> 6 nights in the elegant Dallah Taibah (Madinah) 5 minutes to the haram <BR> &nbsp &nbsp (http://www.dallahtaibah.com/) <BR> <li> 2 nights in Azizia building prior to Hajj (with access throughout the Hajj rites) <BR> <li> Breakfast & dinner buffet in hotels <BR> <li> Private deluxe coaches for all ground transportation (Not Government Buses) <BR> <li> VIP tents in Mina - Private & secured <BR> &nbsp &nbsp (Closest to the Jamarat, not 6km away in the North American Camp) <BR> <li> VIP camp in Arafat - Private & secured (Across from Jabal Rahmah) <BR> <li> Three meals and all day refreshments served in Mina. <BR> <li> Tours to historic sites in Madinah <BR> <li> One dedicated group leader per bus <BR><BR><BR> <FONT SIZE="+1"><B>Additional program features:</B></FONT SIZE="+1"> <BR><BR> <li> Comprehensive five week Hajj seminar prior to departure. <BR> <li> Comprehensive Hajj manual, dua' book, CD's and DVD's <BR> <li> Special seminars and guidance in Makkah, Madinah, Arafat and Mina <BR> <li> Ihram for men <BR><BR><BR> <FONT SIZE="+1"><B>Extra Services Available:</B></FONT SIZE="+1"> <BR><BR> <li> Side trips available to your destination of choice after Hajj. <BR> <li> We offer a personal assistant/guide for seniors and those with special needs <BR> <li> Hajj drafts and ACYW-135/Menactra and the H1N1 vaccine not included. <BR> <li> Price based on quad, triple and double accommodations extra <BR><BR><BR> <FONT SIZE="+1"><B>Discount</B></FONT SIZE="+1"> <BR><BR> <li> Register by May 31, 2010, and we will include the cost of your sacrifice. $150 saving. <BR><BR><BR> <FONT SIZE="+1"><B>To Register Contact:</B></FONT SIZE="+1"> <BR><BR> Arif M. Assim or Rafeek Assim <BR> 1-888-814-UMRA <BR> Toronto Visa Office: (416) 873-8918 <BR><BR> </TD></TR></TABLE></div> </BODY>