Event.addBehavior({
	'div#button a' : function() {
		new Remote.Link(this, { 
														onLoading: function(){this.blur();}.bind(this),
														//onComplete: function(){},
														onSuccess: function(transport)
															{ $('spotlight_content_area').update(transport.responseText); 
																$$('div#button a').invoke('removeClassName','on');
																this.addClassName('on');
																return false;	
															}.bind(this)  
													}
									)
	},
	'a[rel=show_community_manager]:click' : function() { new Effect.Appear('community_manager', {duration: 0.5}); return false;},
	'a[rel=show_community_manager_john]:click' : function() { new Effect.Appear('community_manager_john', {duration: 0.5}); return false;},
	'div[rel=hide_community_manager]:click' : function() { new Effect.Fade('community_manager', {duration: 0.5}); return false;},
  'div[rel=hide_community_manager_john]:click' : function() { new Effect.Fade('community_manager_john', {duration: 0.5}); return false;}

})