function stoggle()
{
  var stateimage1a = document.getElementById('StateLeft1a').getElementsByTagName('img')[0];
  var statediv1b = document.getElementById('StateLeft1b');
  if (stateimage1a.src.substr(stateimage1a.src.length - 8, 8) == 'open.gif')
  {
    stateimage1a.src = 'http://www.illinoislottery.com/images/closed.gif';
    statediv1b.style.display = 'block'
  }
  else
  {
    stateimage1a.src = 'http://www.illinoislottery.com/images/open.gif';
    statediv1b.style.display = 'none'
  }
}