// JavaScript Document
//START

/***********************************************
* 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
***********************************************/

//This is a modified script by Aaron Latham-Anderson - all style related data has been ported to style sheet.

//Contents for menu 1
var comMenu=new Array()
comMenu[0]='<a href="comArch.html">Architecture</a>'
comMenu[1]='<a href="comEdit.html">Editorial</a>'
comMenu[2]='<a href="comMark.html">Marketing</a>'
comMenu[3]='<a href="comStud.html">Studio</a>'
comMenu[4]='<a href="com360.html">360&deg; Panoramas</a>'

var wedMenu=new Array()
wedMenu[0]='<a href="wedPre.html">Pre Wedding</a>'
wedMenu[1]='<a href="wedCerem.html">Ceremony</a>'
wedMenu[2]='<a href="wedLoc.html">Location</a>'
wedMenu[3]='<a href="wedArt.html">Fine Art</a>'

var portMenu=new Array()
portMenu[0]='<a href="portCom.html">Commercial</a>'
portMenu[1]='<a href="portPreg.html">Pregnancy</a>'
portMenu[2]='<a href="portFmly.html">Family</a>'
portMenu[3]='<a href="portFine.html">Fine Art</a>'
portMenu[4]='<a href="portMake.html">Makeovers</a>'

var stockMenu=new Array()
stockMenu[0]='<a href="stockNlsn.html">Nelson</a>'
stockMenu[1]='<a href="stockNz.html">New Zealand</a>'
stockMenu[2]='<a href="stockGen.html">General</a>'

var aboutMenu=new Array()
aboutMenu[0]='<a href="aboutUs.html">About Us</a>'
aboutMenu[1]='<a href="aboutFacil.html">Facilities</a>'
aboutMenu[2]='<a href="aboutSpon.html">Sponsorship</a>'


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" 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){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
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){
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")

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
//END
//START
function popUp(url,w,h) {
	if(w==null || w==0 || w==''){w='500'}
	if(h==null || h==0 || h==''){h='575'}
	var windowSize = 'height=' + w + ',width=' + h;
	newwindow=window.open(url,'photoView',windowSize);
	newwindow.resizeTo(w,h)
	if (window.focus) {newwindow.focus()}
	return false;
}
//END
//START
function resize(w,h){
	if(w==null || w==0 || w==''){w='400'}
	if(h==null || h==0 || h==''){h='400'}
	window.resizeTo(w,h)
}
//END
//START
function imgPreview(source,caption_text){

var caption = document.getElementById('caption');
var imgField = document.getElementById('imgField');

var imgFieldContent = document.createElement('span');
var captionContent2 = document.createElement('span');



imgFieldContent.innerHTML = "<img src='" + source + "' />";
imgField.replaceChild(imgFieldContent, imgField.firstChild);

captionContent2.innerHTML = caption_text
caption.replaceChild(captionContent2, caption.firstChild);

}
//END
//START
function imgPreviewOut(){

var imgField = document.getElementById('imgField')
var imgFieldContent= document.createElement('span')

imgFieldContent.innerHTML = "<object type=\"application/x-shockwave-flash\" data=\"flsh/stirling_flash.swf\" class=\"flashMovie1\" ><param name=\"movie\" value=\"flsh/stirling_flash.swf\" /></object>";

imgField.replaceChild(imgFieldContent, imgField.firstChild);


var caption = document.getElementById('caption')
var captionContent2 = document.createElement('span');


captionContent2.innerHTML = "Photography with Imagination"
caption.replaceChild(captionContent2, caption.firstChild);
}
//END