// make call to GoogleAnalytics
function startGA()
{
  try
  {
    var pageTracker = _gat._getTracker("UA-8410527-1");
    pageTracker._trackPageview();
  }
  catch(err)
  {
  }
}
try
{
    // load the GoogleAnalytics using a document.write statement
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

    // if _gat is defined start GoogleAnalytics else pause and then start
    if(typeof(_gat) == 'object')
    {
      startGA();
    }
    else
    {
      // wait 1000 ms to make call to GoogleAnalytics
      setTimeout('startGA();', 1000);
    }

}
catch(err)
{
}