var config = {
	home : {
		init : function() {
			currentPage = "home";
			adjustHomeModules();
            
		}
	},

	myNotebook : {
		init : function() {
			currentPage = "myNotebook";
			initScrollPane();

			$("#tabs ul").tabs("#pages > div", {
						history : true
					});
		}
	},
	flashLanding : {
		init : function() {
			currentPage = "flashLanding";
		}
	},
	noLeftNavTmpl : {
		init : function() {
			currentPage = "noLeftNavTmpl";
		}
	},
	search : {
		init : function() {
			currentPage = "search";
		}
	},
	myPhisicianMatches : {
		init : function() {
			currentPage = "myPhisicianMatches";
			initPhysicianTooltip('.action .favorites', 'Add to Favorites');
			initPhysicianTooltip('.action .share', 'Share Information');
		}
	},
	myFavoritePhysicians : {
		init : function() {
			// initScrollPane();
			currentPage = "myFavoritePhysicians";
			initPhysicianTooltip('.action .delete', 'Remove from Favorites');
			initPhysicianTooltip('.action .up', 'Up');
			initPhysicianTooltip('.action .down', 'Down');
		}
	},
	myQuestions : {
		init : function() {
			initScrollPane();
			currentPage = "myQuestions";

			// auto resize for notes text area
			$('textarea##expandingText').autoResize({
						// On resize:
						onResize : function() {
							// On area resize, restart Scrollpane
							initScrollPane();
						}
					});
		}
	},
	findAPhysician : {
		init : function() {
			currentPage = "findAPhysician";

		}
	},
	contactUs : {
		init : function() {
			currentPage = "contactUs";
		}
	},
	threeColumnNav : {
		init : function(str) {
			currentPage = str;
			initSideNav();

		}
	},

	myProfile : {
		init : function() {
			currentPage = "myProfile";
		}
	},
	fullProfile : {
		init : function() {
			currentPage = "fullProfile";
		}
	},

    complementaryProfile: {
		init: function(){
			currentPage = "complementaryProfile";
		}
	}
};
