// JavaScript Document


function setActive() {
  aObj = document.getElementById('mainNav').getElementsByTagName('a');
  for(i=0;i<aObj.length;i++) {
    if(document.location.href.indexOf(aObj[i].href)>=0) {
      aObj[i].parentNode.className='active';
	}
	else if(document.location.href == 'http://secondchance.flalottery.com/secondchance/') {
		aObj[0].parentNode.className='active';
	}
	else if(document.location.href == 'http://secondchance.flalottery.com/secondchance/loginSubmit.do') {
		aObj[5].parentNode.className='active';
	}
	else if(document.location.href == 'http://secondchance.flalottery.com/secondchance/tktentrySubmit.do') {
		aObj[5].parentNode.className='active';
	}
	else
		continue;
  }
	
}

document.onload = setTimeout('setActive()',50);

