$(document).ready(function()
{
	var content=$("#content");
	$("#extracontent",content).hide();
	$.ga.load('UA-11425076-1');
	$("#more a",content).click(function()
		{
		$.ga.trackEvent("Additional Info","show");
		});
		$('#content a[href^=http]').click(function()
		{
			$.ga.trackEvent("Content External Link",$(this).attr("href"));
			});

		$("#contact p a").click(function()
		{
			$.ga.trackEvent("Contact",$(this).attr("class"));
		});

		$("#networks a").click(function()
		{
			$.ga.trackEvent("Social Network",$(this).attr("id"));
		});
		
		$("#more a",content).click(function(){
			$("#extracontent",content).show("normal");$(this).parent().remove();return false;
			});
		
		$("a[rel*='external']").addClass("external").each(function()
		{
			$(this).attr("title",$(this).attr("title")+" (opens in a new window)");
		}).click(function(){window.open($(this).attr("href"));return false;
		});
		});