	$(function() {
		$('a.facebook').live('click',function(e) {
			
			e.preventDefault();
			
			var message = ''; 
			
			var venue=$('input[type=hidden][name=showVenue]',$(this)).val();
			
			var location=$('input[type=hidden][name=showLocation]',$(this)).val();
			
			var date=$('input[type=hidden][name=showDate]',$(this)).val();	
			
			var info=$('input[type=hidden][name=showInfo]',$(this)).val();
			
			var link=$('input[type=hidden][name=showLink]',$(this)).val();
			
			var attachment = { 
				
				'name': 'Going to see Brendan Benson Tour', 
				
				'href': link, 
				
				'caption': '{*actor*} is going to see Brendan Benson with '+info+' on '+format_date(date)+' at '+venue+' in '+location};
			
				FB.Connect.streamPublish(message, attachment);
		});

	});
	
 FB.init("da91fd41ae0919b8bc0d6903167ecdd5", "/fb/xd_receiver.htm", {"ifUserConnected":onConnected, "ifUserNotConnected":onNotConnected}); 