// Add Events - Kudos to John Resig (http://ejohn.org/projects/flexible-javascript-events/)
function addEvent( obj, type, fn ) {
  if ( obj.attachEvent ) {
    obj["e"+type+fn] = fn;
    obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }
    obj.attachEvent( "on"+type, obj[type+fn] );
  } else
    obj.addEventListener( type, fn, false );
}

// GoogleAnalytics Account ID#
_uacct = "UA-324417-4";

// Add This Config
var addthis_brand = "Tranquility Base";
var addthis_options = 'email, print, delicious, facebook, twitter, myspace, stumbleupon, more';
var addthis_exclude = 'amazonwishlist, ballhype, kaboodle, stylehive, thisnext, tipd, yardbarker';


// Initialising Script
function initEvents()
{
	urchinTracker(); // Run Google Analytics
}

// Attach Events
addEvent(window, "load", initEvents);