/**
 * @author Nathaniel Robinson
 */

/** 
 * Used to control select list on Lawsuit.com homepage.
 * @param {Object} targ
 * @param {Object} selObj
 * @param {Object} restore
 */
function homePagePAPullDown(targ,selObj,restore) { //v3.0

  var optionValue = selObj.options[selObj.selectedIndex].value;

  if(optionValue !="0")
    eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");

  if (restore) selObj.selectedIndex=0;
}