// Set this to whatever funnel path you want somewhere between the LoadScript call and TrackPage call
var google_analytics_PagePath = "";

// Should be in the head of the page
function google_analytics_LoadScript()
{
    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"));    
}

// Must be the last element of the body since analytics will walk through the entire DOM
function google_analytics_TrackPage(analyticsCode)
{
    try 
    {
        var pageTracker = _gat._getTracker(analyticsCode);
        if (google_analytics_PagePath != "")
        {
            pageTracker._trackPageview(google_analytics_PagePath);
        }
        else
        {
            pageTracker._trackPageview();
        }            
    } 
    catch(err) 
    {
        
    }
}