(function($) {

	$(document).ready(function(){
		
		$('a.facebook').click(function(){
			
			var href = $('a.facebook').attr('href');
			
			_gaq.push(['_trackEvent', 'External', 'click', href]);
			window.location.replace(href);

			return false;
		});
		
		$('a.myspace').click(function(){
			
			var href = $('a.myspace').attr('href');
			
			_gaq.push(['_trackEvent', 'External', 'click', href]);
			window.location.replace(href);
			
			return false;
		});
	});
	
})(jQuery);