jQuery(document).ready(function($) {
	var canRun = $('body').is('#people');
	if (canRun) {
		window.People = {
			/* constructor */
			init : function() {
				window.People = this;
				this.updatePeopleContents();
				this.attachGeneralHandlers();
				return this;
			},
			updatePeopleContents : function() {
				/* people page follow/following/Stop following */
				if ($('body').is('#people')) {
					$('li.function.unfollow a').live('mouseover', function(e) {
						$(this).text('Stop following');
					});
					$('li.function.unfollow a').live('mouseout', function(e) {
						$(this).text('Following');
					});
				}
			},
			attachGeneralHandlers : function() {
				$(window).resize(function() {
					GeneralUtils.setContentWidth();
				});
			}
		}.init();
	}
});