/*
 *	Class: phone.bottom
 *	Handles everything inside the lower section of the phone
 */
phone.bottom = {};

/*
 *	Function: setup
 *	Initilizes the lower section of the phone. Sets vars, events, etc
 */
phone.bottom.setup = function() {
	console.log('phone.bottom.setup()');
	
	$('#phone_bottom .language').unbind('click').toggle(phone.language.showSection, phone.language.hideSection);
};
