Google Analytics' js load can hang occasionally depending on how busy their host is. The best way of including the js file is not to do it the way now... which could cause our page loads to hang... but rather:
[blockquote]
<!-- google analytics -->
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-2131942-5";
setTimeout("try{urchinTracker();}catch (e){}",10);
</script>
[/blockquote]
This is something I do on my own site ( http://www.daylife.com/ ), which works out pretty well since it opens this process in another "thread" and allows the browser interpreter to continue without having to wait for the js include to fully load. Only noticed that EGO used ga when my browser hung for a sec while it loaded ga's js file. Posted here because I'm not sure who I would send this to.
[blockquote]
<!-- google analytics -->
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-2131942-5";
setTimeout("try{urchinTracker();}catch (e){}",10);
</script>
[/blockquote]
This is something I do on my own site ( http://www.daylife.com/ ), which works out pretty well since it opens this process in another "thread" and allows the browser interpreter to continue without having to wait for the js include to fully load. Only noticed that EGO used ga when my browser hung for a sec while it loaded ga's js file. Posted here because I'm not sure who I would send this to.