/*
======================================================================
 Liquid Nails: Home page.
======================================================================
*/

var HomePage = Class.create();
HomePage.prototype = {

	// Initializer.
	//
	initialize : function() {
	}, // End initialize().

	// Redirects to the user's home page based on his/her user type ('diy' or 'pro').
	// If there is no set user type, do not redirect anywhere.
	//
	goToUserHomePage : function( userType ) {

		switch( userType ) {

			case 'diy':
				window.location.href = './diy/index.jsp';
				break;

			case 'pro':
				window.location.href = './pro/index.jsp';
				break;

		} // End switch.

	} // End goToUserHomePage().

} // End class SegmentUser.

var homePage = new HomePage();
