I'm pretty happy with the speed overall. I find that the speed seems to be limited by the other end rather than my connection. And I rarely download multiple large items at once. I could use a little faster upload speed, but that's just me being impatient.
Check out some of these other ones:
I just created a blank HTML file with the following code and ran it to see a bunch of results and picked a few of the more impressive ones:
HTML Code:
<body>
<script language="javascript">
function zfill(n,p){
n+='';
while(n.length<p)n='0'+n;
return n;
}
for(var i=0;i<999;i++){
document.write('<img src="http://www.speedtest.net/result/454600'+zfill(i,3)+'.png" /> ');
}
</script>
</body>