<?php
/*
Plugin Name: Global GIDBlog Google Analytics
Description: Adds GIDBlog.com's global Google Analytics javascript code to the footer of every page here.
Author: J de Silva.
Version: 1.0
Author URI: http://gidblog.com/blog/2007/05/06/my-first-wordpress-plugin/
*/

if( !function_exists('show_gid_google_analytics') )
{
    function 
show_gid_google_analytics()
    {
        if( !isset(
$_COOKIE['some_cookie'])  ||  !$_COOKIE['some_cookie'] ) // show this only if it's not me. :)
        
{
            echo <<< ENDHTML
<!-- giblog.com global google analytics --><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script><script type="text/javascript"><!--
_uacct = "UA-12345-6"; urchinTracker(); //--></script>
<!-- giblog.com global google analytics (end) -->
ENDHTML;
        }
    }
}

add_action'wp_footer''show_gid_google_analytics' );
?>