Slow loading webpages need help optimising

I have server load down to an average of 0.02, I have installed eaccelerator and tuned a few settings, though im sure I need to do more, just not sure. These are my settings
Box is running RHE, 1 Gig Mem, Apache 2

Top
Code:
 17:03:56  up 58 days, 17:56,  1 user,  load average: 0.00, 0.04, 0.00 
153 processes: 148 sleeping, 2 running, 0 zombie, 3 stopped 
CPU states:  cpu    user    nice  system    irq  softirq  iowait    idle 
           total    0.3%    0.0%    0.1%   0.0%     0.1%    0.0%   99.2% 
Mem:  1019396k av,  856208k used,  163188k free,       0k shrd,  100056k buff 
              501272k actv,  210920k in_d,   14396k in_c 
Swap: 2040244k av,    4024k used, 2036220k free                  524928k cached
ps aux | grep -c httpd
67

ps aux | grep -c mysql
3

apache settings
Code:
Timeout 30
KeepAlive On 
MaxKeepAliveRequests 100 
KeepAliveTimeout 10
Code:
<IfModule prefork.c> 
StartServers         5
MinSpareServers      32
MaxSpareServers     64
MaxClients         120
MaxRequestsPerChild  100 
</IfModule>
Code:
<IfModule worker.c>
StartServers         5
MaxClients          120
MinSpareThreads     25 
MaxSpareThreads     75
ThreadsPerChild     25
MaxRequestsPerChild 100  
</IfModule>
Mysql variables
--------------
Code:
[mysqld]
skip-locking
skip-innodb
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
set-variable = table_cache=256
set-variable = key_buffer=128M
set-variable = long_query_time=2
#log-long-format
log-slow-queries = /var/mysql/slow_queries.log
I've cleaned out the error and access log files, and also the domlogs, but still pages load very slow

 

 

 

 

Top