function getRandomNodeWithAjax(theNodes, targetObj) {
	// ==============================================
	// Copyright 2003 by jsCode.com
	// Source: jsCode.com
	// Author: etLux
	// Free for all; but please leave in the header.
	// ==============================================
	
	// Set up the image files to be used.
	//var theNodes = new Array();	 // do not change this
	// To add more image files, continue with the
	// pattern below, adding to the array. Rememeber
	// to increment the theNodes[x] index!

	//theNodes[0] = '314';
	//theNodes[1] = '315';

	// ======================================
	// do not change anything below this line
	// ======================================

	var p = theNodes.length
	var whichNode = Math.round(Math.random()*(p-1));
	var nodeid = theNodes[whichNode];
	
  var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Your browser does not support AJAX!");
        return false;
        }
      }
    }
    xmlHttp.onreadystatechange=function()
      {
      if(xmlHttp.readyState==4)
        {
        document.getElementById(targetObj).innerHTML=xmlHttp.responseText;
        InitSliders();
        }
      }
    xmlHttp.open("GET","site?node_id=" + nodeid, true);
    xmlHttp.send(null);

}


