<!-- //Begin
var currFact;
var oldcontent;
var facts = ["Maine has the highest rate of working Temporary Assistance to Needy Families recipients in New England",
"The statewide average for travel for child welfare staff was $162 per month in State Fiscal Year 2007.",
"DHHS does not pay for tuition, water or sewer.  In an emergency situation, there may be a very rare exception.",
"Single-parent families comprise 65 percent of the caseload.",
"Maine's maximum benefit is $485 a month. - the lowest in New England",
"Even when Food Stamps are added, TANF recipients reach	just 65 percent of the federal poverty level.",
"More than 70 percent of TANS recipients receive benefits for one year or less.",
"85 percent of TANF recipients receive the benefit for two years or less.",
"Maine has the highest rate of employed TANF recipients in New England.",
"Maine ranks fifth in the nation in retaining jobs  for TANF recipients.",
"Since 1996 DHHS staff has helped 63,000 families leave the TANF program.",
"The TANF caseload has dropped from more than 21,000 in 1994 to 13,163 (December 2007).",
"An average of 200 TANF cases are closed each month.",
"Maine's documented rate of fraud and abuse is 2/10<sup>th</sup> of 1 percent - significantly lower than the national average.",
"DHHS has dedicated staff members that investigate all complaints of fraud and abuse.",
"85 percent of recipients receive the benefit for two years or less. ",
"Two parent families are eligible for TANF only  when one parent is incapacitated, unemployed, underemployed. ",
"Absent parents have the right to visit TANF children in accordance with court visitation orders.",
"In order to get TANF benefits, all family members must be a citizen or a legal immigrant.",
"A family must also prove that they are residents of Maine to receive TANF benefits.",
"Maine has the highest rate of employed TANF recipients in New England ",
"Maine ranks fifth in the nation in retaining jobs for TANF parents.",
"Maine's maximum TANF benefit is the lowest offered in New England.",
"Less than 1 percent of all recipients in 2006 came from another state and of those, one-third were coming home.",
"Over five years, five times as many benefit recipients left Maine each month compared to the number of people who moved here and received assistance.",
"Federal law does not prohibit MaineCare families from having a vehicle so that they can get back and forth to work and get the medical care that they need. ",
"MaineCare is only available for those who meet certain income and asset restrictions. ",
"Many working families still qualify for MaineCare coverage.",
"Maine ranks #1 nationwide for access to Food Stamps for eligible people. ",
"Maine recently received an award of $680,000 from the Federal Government for helping people in need receive this federal benefit to purchase healthy foods.",
"In October, 2007, Maine helped 169,531 individuals purchase healthy foods through the federal Food Stamp Program.",
"In 2007, more than $15.2 million in Food Stamps was distributed to grocers throughout Maine. ",
"Food Stamp recipients cannot use the benefit for alcohol or tobacco products",
"Consumer research shows that there is no difference in the kinds of foods purchased by Food Stamp recipients and all other consumers.",
"In order to get Food Stamp benefits, a person must be a citizen OR legal immigrant.  "];

function intRand(max, min) {
  max = (!max) ? 1 : max;
  min = (!min) ? 0 : min;
  return Math.floor(Math.random() * (max - min + 1) + min);
}
function getFact(){
  max = facts.length -1;
  thisFact = intRand(max,0);
  nFact = thisFact*1 + 1;
  mText = "<h3 style='padding-top:0px'>Fact #" + nFact + ":</h3>" + facts[thisFact];
  return mText;
}
function factME(){
  todayFact = document.getElementById("link_details");
  todayFact.innerHTML = getFact();
}

function show_details(what){
  myDetails = document.getElementById("link_details");
  if(what > "") {
	oldcontent = myDetails.innerHTML;
    myDetails.innerHTML = what;
  } else {
    myDetails.innerHTML = oldcontent;
  }
}

//End -->
