function showInfo(id)
{
	var divInfo = document.getElementById('info'+id);
      if (divInfo.className == 'job_hidden') {
	  divInfo.className='table';
        document.images['arrow'+id].src = 'img/open.gif';
        document.images['arrow'+id].alt = 'Click to Hide Contact Information';
      } else {
        divInfo.className='job_hidden';
        document.images['arrow'+id].src = 'img/closed.gif';
        document.images['arrow'+id].alt = 'Click to Show Contact Information';
      }
}
