<?php
/* 
Plugin Name: Google Analytics Plugin
Version: 0.1
Plugin URI: http://blog.neofreko.com/
Description: Simple Google Analytics Plugin
Author: Akhmad Fathonih <akhmadf@gmail.com>
Author URI: http://blog.neofreko.com
*/ 

function googleAnalytics_plugin() {
echo<<<END
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-98280-1"; /*change this to suit your google analytics account*/
urchinTracker();
</script>
END;
}

add_action('wp_head''googleAnalytics_plugin');
?>