// JavaScript Document

/***********************************************
* 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
***********************************************/


//Articles and Sponsorships

//Sponsorship Events
var menu7=new Array()
menu7[0]='<a href="../media/sponsorships/capitol_connection.pdf">• ACG Capital Connection</a>'
menu7[1]='<a href="http://www.acg.org/houston" target="_blank">• ACG Houston</a>'
menu7[2]='<a href="../media/sponsorships/TMA2007.pdf">• TMA Regional Conference</a>'

//ACG
var menu2=new Array()
menu2[0]='<a href="../media/sponsorships/acg_capital_connection.pdf">• ACG Capital Connection</a>'
menu2[1]='<a href="http://events.acg.org/events/detail.asp?F_CHAPTER_ID=&AREA=&EVENT_ID=2711&MONTH_CHOICE=8&DAY_CHOICE=30&YEAR_CHOICE=2007" target="_blank">• ACG Dallas, 2nd Annual Wine &nbsp;&nbsp;Tasting & Reception</a>'
menu2[2]='<a href="../media/sponsorships/energy_private_equ_mktplace.pdf">• ACG Houston Energy Private &nbsp;&nbsp;Equity Marketplace Wine Tasting</a>'

//TMA
var menu3=new Array()
menu3[0]='<a href="../media/articles_presentations/TMA_Houston_OCT_2006.ppt">• Hyper-Liquidity and its &nbsp;&nbsp;Implications</a>'

//University of Texas
var menu4=new Array()
menu4[0]='<a href="../media/sponsorships/UT_law_MAI_2005.pdf">• UT School of Law 2005 Mergers &nbsp;&nbsp;and Acquisitions Institute</a>'
menu4[1]='<a href="../media/sponsorships/UTSept2006.pdf">• UT School of Law 2006 Mergers &nbsp;&nbsp;and Acquisitions Institute</a>'
menu4[2]='<a href="../media/sponsorships/UT_Law_bankruptcy_2006.pdf">• UT School of Law 25th Jay L. &nbsp;&nbsp;Westbrook Bankruptcy &nbsp;&nbsp;Conference</a>'
menu4[3]='<a href="../media/sponsorships/UT_Law_bankruptcy_2007.pdf">• UT School of Law 26th Jay L. &nbsp;&nbsp;Westbrook Bankruptcy &nbsp;&nbsp;Conference</a>'


//Valcon
var menu5=new Array()
menu5[0]='<a href="../media/sponsorships/valcon32005.pdf">• VALCON - Legal and Financial &nbsp;&nbsp;Perspectives on Business &nbsp;&nbsp;Valuations & Restructuring 2005</a>'
menu5[1]='<a href="../media/sponsorships/Valcon3.3.2006.pdf">• VALCON - Legal and Financial &nbsp;&nbsp;Perspectives on Business &nbsp;&nbsp;Valuations & Restructuring 2006</a>'
menu5[2]='<a href="../media/sponsorships/valcon_2007.pdf">• VALCON - Hedge Funds, &nbsp;&nbsp;Distressed Debt, Risk and &nbsp;&nbsp;Restructurings</a>'
menu5[3]='<a href="../media/sponsorships/Valcon_2008.pdf">• VALCON - Liquidity, LBOs, &nbsp;&nbsp;Risk and Restructuring 2008</a>'

//Other Articles
var menu6=new Array()
menu6[0]='<a href="../media/articles_presentations/Daily_BK_Review.pdf">• Hedge Funds In Leveraged &nbsp;&nbsp;Finance: Are They Too Good to &nbsp;&nbsp;Be True?</a>'
menu6[1]='<a href="../media/articles_presentations/HBJ_REPRINT.pdf">• Houston Business Journal &nbsp;&nbsp;Energy Engine Drives M&amp;A  &nbsp;&nbsp;World</a>'
menu6[2]='<a href="../media/articles_presentations/TMA_Role_Hedge_Funds.pdf">• The Role of Distressed Investing &nbsp;&nbsp;and Hedge Funds in &nbsp;&nbsp;Turnarounds and Buyouts And &nbsp;&nbsp;How This Affects Middle-Market &nbsp;&nbsp;Companies</a>'

		
var menuwidth='186px' //default menu width
var menubgcolor='#CC6633'  //menu bgcolor
var disappeardelay=500  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?
var horizontaloffset=0 //horizontal offset of menu from default location. (0-5 is a good value)

/////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=="leftedge"){
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)

//POSITION IT...
if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")-5
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+obj.offsetWidth+horizontaloffset+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+"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