function displayWhatsNew()
{
  if( ajaxObj.readyState == 4 )
  {
    TA_WHATSNEW.innerHTML = ajaxObj.responseText;
    submitRequest( displayIdeaList, "classfactory.php?function=getContent&item=idealist" );
  }
}

function displayIdeaList()
{
  if( ajaxObj.readyState == 4 )
  {
    TA_IDEALIST.innerHTML = ajaxObj.responseText;
  }
}

function onload()
{
//  submitRequest( displayWhatsNew, "classfactory.php?function=getContent&item=whatsnew" );
}

