function ar( arguments, func )
{
	new Ajax.Request('./ajax.php',
  {
    method:'get',
	parameters: arguments,
    onSuccess: function(transport, json)
	  {
			func(transport, json);
	  }
  });
}
