/***********************************************
* 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
***********************************************/

var aboutSub=new Array()
aboutSub[0]='<a href="/what-is-stockval.php">What is StockVal?</a>'
aboutSub[1]='<a href="/how-does-it-work.php">How does StockVal work?</a>'
aboutSub[2]='<a href="/how-use-it.php">How do I use it?</a>'
aboutSub[3]='<a href="/get-support.php">Can I get support?</a>'
aboutSub[4]='<a href="/cost.php">What does it cost?</a>'
aboutSub[5]='<a href="/register.php">How do I subscribe?</a>'
aboutSub[6]='<a href="/SVhomepage_Trial.php?mtcPromotion=11646">How do I trial?</a>'

var teamSub=new Array()
teamSub[0]='<a href="/clime.php">Clime Asset Management</a>'
teamSub[1]='<a href="/our-people.php">Our people</a>'
teamSub[2]='<a href="/presentation.php">Watch a video presentation</a>'
teamSub[3]='<a href="/media.php">Media</a>'

var investingSub=new Array()
investingSub[0]='<a href="/sv_informer.php">FREE Newsletter</a>'
investingSub[1]='<a href="/research.php">Research Notes and Podcasts</a>'
investingSub[2]='<a href="/pe-ratio.php">Why the P/E ratio is irrelevant</a>'
investingSub[3]='<a href="/value-based-investing.php">What is Value Based Investing?</a>'
investingSub[4]='<a href="/valuation-speculation.php">Valuation versus Speculation</a>'
investingSub[5]='<a href="/faq.php">Frequently Asked Questions</a>'
investingSub[6]='<a href="/courses.php">Free Investment Seminars</a>'
investingSub[7]='<a href="/testimonials.php">Testimonials</a>'
investingSub[8]='<a href="/case-studies.php">Case Studies</a>'
investingSub[9]='<a href="/glossary-terms.php">Glossary of Investing Terms</a>'

var supportSub=new Array()
supportSub[0]='<a href="/members/sv_qs_guide.php">Quick Start Guide</a>'
//supportSub[1]='<a href="/members/support.php">Support Contact Information</a>'
supportSub[1]='<a href="/members/faqs.php">Frequently Asked Questions</a>'
supportSub[2]='<a href="/members/sv_fact_sheets.php">Technical Fact Sheets</a>'
supportSub[3]='<a href="/members/sv_trouble_shooting.php">StockVal Troubleshooting</a>'
supportSub[4]='<a href="http://www.stockval.com.au/glossary-terms.php">Glossary of Investing Terms</a>'

var contactSub=new Array()
contactSub[0]='<a href="http://www.stockval.com.au/contact.php">Contact Us</a>'
//contactSub[1]='<a href="/testimonial.php">Submit a Testimonial</a>'
//contactSub[2]='<a href="/faq.php">Submit Question to FAQ</a>'



var menuwidth='170px' //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

