//Contents for menu 1
var menu1=new Array()
menu1[1]='<a href="babyshots.php" class="bodylink">&curren; babyShots</a>'
menu1[2]='<a href="coupleshots.php" class="bodylink">&curren; coupleShots</a>'
menu1[3]='<a href="family1.php" class="bodylink">&curren; familyShots</a>'
menu1[4]='<a href="gardenshots.php" class="bodylink">&curren; gardenShots</a>'
menu1[5]='<a href="beachshots.php" class="bodylink">&curren; beachShots</a>'
menu1[6]='<a href="wedding1.php" class="bodylink">&curren; weddingShots</a>'
menu1[7]='<a href="portfolioshots.php" class="bodylink">&curren; portfolioShots</a>'
menu1[8]='<a href="events.php" class="bodylink">&curren; eventShots</a>'
menu1[9]='<a href="corporate1.php" class="bodylink">&curren; corporateShots</a>'
menu1[10]='<a href="hotel1.php" class="bodylink">&curren; hotelShots</a>'
menu1[11]='<a href="celebrity.php" class="bodylink">&curren; celebrityShots</a>'
menu1[12]='<a href="interior.php" class="bodylink">&curren; interiorShots</a>'
menu1[13]='<a href="exterior.php" class="bodylink">&curren; exteriorShots</a>'
menu1[14]='<a href="food1.php" class="bodylink">&curren; foodShots</a>'
menu1[15]='<a href="pets1.php" class="bodylink">&curren; petShots</a>'
menu1[16]='<a href="productshots.php" class="bodylink">&curren; productShots</a>'
menu1[17]='<a href="anyshots.php" class="bodylink">&curren; anyShots</a>'
menu1[18]='<a href="fashion1.php" class="bodylink">&curren; fashionShots</a>'

var wedding=new Array()
wedding[1]='<a href="why_hotshots.php" class="bodylink">&curren; Why hotShots</a>'
wedding[2]='<a href="wedding_testimonials.php" class="bodylink">&curren; Testimonials</a>'
wedding[3]='<a href="wedding_packages.php" class="bodylink">&curren; Our Packages</a>'


var babies=new Array()
babies[1]='<a href="testimonials.php" class="bodylink">&curren; Testimonials</a>'
babies[2]='<a href="rates.php" class="bodylink">&curren; Our Packages</a>'

var rates=new Array()
rates[1]='<a href="rates.php" class="bodylink">&curren; Family Shoots</a>'
rates[2]='<a href="canvas_packages.php" class="bodylink">&curren; Canvas</a>'
rates[3]='<a href="wedding_packages.php" class="bodylink">&curren; Wedding</a>'
rates[4]='<a href="corporate_packages.php" class="bodylink">&curren; Corporate</a>'


var about=new Array()
about[1]='<a href="about_us.php" class="bodylink">&curren; About hotShots</a>'
about[2]='<a href="mission_statement.php" class="bodylink">&curren; Mission Statement</a>'
about[3]='<a href="history.php" class="bodylink">&curren; History</a>'
about[4]='<a href="wedding_testimonials.php" class="bodylink">&curren; Testimonials</a>'
about[5]='<a href="media.php" class="bodylink">&curren; Media</a>'
about[6]='<a href="gift_ideas.php" class="bodylink">&curren; Gift Ideas</a>'
about[7]='<a href="awards.php" class="bodylink">&curren; Awards</a>'
about[8]='<a href="newsletter.php" class="bodylink">&curren; Newsletter</a>'
about[9]='<a href="charity.php" class="bodylink">&curren; Charity</a>'
about[10]='<a href="useful_links.php" class="bodylink">&curren; Useful Links</a>'




var menuwidth='180px' //default menu width
var menubgcolor='#797979'  //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=-500
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 (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


//////////////////////// RESTRICT RIGHT CLICK ////////////////////////////


var message="Restricted : Copyrite HotShotsDubai.com";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")