function gaLog(category, action, label, value) {
	if( typeof(pageTracker) != "undefined" && pageTracker!==null ) {
		pageTracker._trackEvent(category, action, label, value);
	}
}
function recordOutboundLink(link, category, action) {
	gaLog("ABTest", (isNew == "false" ? "oldHome" : "newHome"), "toGetButton");
	setTimeout('document.location = "' + link.href + '"', 500);
	return false;
}
$(document).ready(function() {
	if (document.location.pathname == "/") {
		gaLog("ABTest", (isNew == "false" ? "oldHome" : "newHome"), "landed");
	} else if (document.location.pathname == "/publishers/get-sharing-button") {
		
	}
});
