//Javascrip for Policy Center Drop-Down Menu
//Contents for menu 2, and so on
var menu2=new Array()
menu2[0]='<p id="purplepop">'
menu2[1]='Data Collection in 2007:'

menu2[2]='<ul>'
menu2[3]='<li>'
menu2[4]='Interviewed welfare program officials in 17 states on their work to help the hard to employ '
menu2[5]='<li>'
menu2[6]='Surveyed child care providers about their experience with the subsidy system'
menu2[7]='<li>'
menu2[8]='Interviewed parents, caregivers, and officials to find out how children of immigrants arrested in workplace raids fared'
menu2[9]='<li>'
menu2[10]='Developed a survey for inventorying efforts to modernize the Food Stamp program'
menu2[11]='</ul>'

var menu3=new Array()
menu3[0]='<p id="redpop">'
menu3[1]='Policy Analysis in 2007:'

menu3[2]='<ul>'
menu3[3]='<li>'
menu3[4]='Developed proposals for stabilizing fiscal policy'
menu3[5]='<li>'
menu3[6]='Helped several states design expanded health insurance programs'
menu3[7]='<li>'
menu3[8]='Analyzed older worker&rsquo;s earnings and job satisfaction after career changes'
menu3[9]='<li>'
menu3[10]='Predicted the subprime mortgage crisis and proposed remedies'
menu3[11]='<li>'
menu3[12]='Shared how means-tested program rules affect asset building in low-income households'
menu3[13]='</ul>'

var menu4=new Array()
menu4[0]='<p id="yellowpop">'
menu4[1]='Evaluation in 2007:'

menu4[2]='<ul>'
menu4[3]='<li>'
menu4[4]='Evaluated the Head Start program&rsquo;s impact on parenting practices'
menu4[5]='<li>'
menu4[6]='Measured the effectiveness of a new agricultural crime prevention project in California'
menu4[7]='<li>'
menu4[8]='Evaluated projects aimed at expanding access to land and financial services in Benin'
menu4[9]='<li>'
menu4[10]='Determined why state food-package programs now mainly reach the elderly rather than young children and their mothers'
menu4[11]='<li>'
menu4[12]='Examined independent living programs for children aging out of foster care'
menu4[13]='<li>'
menu4[14]='Helped a research consortium evaluate social services and federal grants for refugees '
menu4[15]='</ul>'

var menu5=new Array()
menu5[0]='<p id="greenpop">'
menu5[1]='Public Education in 2007:'

menu5[2]='<ul>'
menu5[3]='<li>'
menu5[4]='Testified before Congress on whether charitable organizations serve diverse communities well'
menu5[5]='<li>'
menu5[6]='Held a point-counterpoint debate on whether Social Security reform can wait'
menu5[7]='<li>'
menu5[8]='Met with the president at the White House to discuss health care'
menu5[9]='<li>'
menu5[10]='Briefed regional directors at the U.S. Department of Education on using longitudinal data'
menu5[11]='<li>'
menu5[12]='Convened a roundtable on supports for low-income working families'
menu5[13]='<li>'
menu5[14]='Worked with the Government Accountability Office on outcome and performance measurement'
menu5[15]='</ul>'

var disappeardelay=0  //menu disappear speed onMouseout (in miliseconds)
var horizontaloffset=2 //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="examples1" style="visibility:hidden;width: 350px" 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
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-obj.offsetWidth < 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 menu up?
edgeoffset=dropmenuobj.contentmeasure-obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either? (position at top of viewable window then)
edgeoffset=dropmenuobj.y
}
}
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("examples1") : examples1
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")+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)
}

//Javascript for Rollover

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

