function homepagetabchange(thetab)
{
 document.all.communitytabscontent.innerHTML="<div align=center><br><img src='/images/loading.gif'><br><br></div>"
  xmlHttp=ajaxinit();
	xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==4)
      {
			 setTimeout("document.all.communitytabscontent.innerHTML=xmlHttp.responseText", 750)
			 //document.all.eventslist.innerHTML=xmlHttp.responseText
      }
    }
  xmlHttp.open("GET","/modules/community/ajax/homepagetab.php?refresh=<?php echo time()?>&content="+thetab,true);
  xmlHttp.send(null);
}

