

/*	James

	File:		Tracking JS
	Author:		James Brannon

	-------------------------------------------------------------------------------------------------------------------- */
	
	function trackme(category,action,label) {
		//- track
		setTimeout(function() {
			_gaq.push(['_trackEvent',category,action,label]);
		}, 1000);
	}
