Because not all browser support async loading of scripts as the current Google Analytics script uses I would still load the script only after the DOM is loaded:
// first thing to do, make sure _gaq is defined:
var _gaq = _gaq || [];
// set your account settings:
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
// queue trackpageview whenever you want :)
_gaq.push(['_trackPageview']);
//////////////////////////////////////////////////////////////////
(function($){
// load the GA script only after the dom is ready
// for simplicity using jQuery, of course you can just listen
// to the DOMContentLoaded / window.load event
$(function(){
// standard code provided by google to load the GA script
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
});
})(jQuery);
//////////////////////////////////////////////////////////////////
// if the script is already loaded, it will execute the tracking request, otherwise it's in the queue
_gaq.push(['_trackEvent', 'Videos', 'Play', 'Gone With the Wind']);
DEMO: http://jsfiddle.net/roberkules/xyU8K/
If you're for some reason forced to use the old version of the Google Analytics script (without queuing) you have to write the queue functionality yourself (which is quite easy) and handle the queue once the script is loaded (which is still loaded only after the DOM is ready).