function getPage()
{
	var page = "";
	var pagegrp = "";
	var category = "";
	
	var personal = [
		["test","recharge"], //test
		["/home","home"],
		["/account/account_pc.html","myaccpc"],
		["/account/account_mobile.html","myaccmobile"],
		["/customer/brastel24h.html","myaccphone"],
		["/spc/rates","spcrates"],
		["/spc/recharge.html","recharge"],
		["/spc/features.html","spcfeat"],
		["/spc/apply.html","apply"],
		["/spc/fromjapan.html","fromjapan","spcdial"],
		["/spc/ITFS_rates.html","FromOthersCountries","spcdial"],
		["/addservice/credtrans.html","credtrans","addserv"],
		["/addservice/callfwd.html","spccallfwd","addserv"],
		["/addservice/sms","sms","addserv"],
		["/addservice/intl_rechg.html","intl_rechg","addserv"],
		["/addservice/gift.html","gift","addserv"],
		["/plans/flatfee.html","flatfee"],
		["/faq/faq_spc.html","faqspc"],		
		["/spc","spc"],
		["/webphone","BrastelWebphone"],
		["/flip/plans","flipplans"],
		["/flip/FLIP_Activation.html","register_flip"],
		["/faq/faq_flip.html","faqflip"],
		["/flip/flipapply.html","flipapply"],
		["/flip","flip"],
		["/mobile/bmobile.html","bmobile"],
		["/mobile/emobile","emobile"],
		["/mobile","mobile"],
		["/helpdesk/index.html","ContactUs"],
		["/privacy/index.html","privacy"],
		["/conference/chat_cafe.html","chatcafe"]  // Don't put comma (,) after the last one!
	];
	
	var business = [
		["/corporate/agent.html","corporateAgent"],
		["/corporate/itfs.html","corporate_itfs","corporate"],
		["/corporate/apply.html","corporateApply"],
		["/corporate/brastel24h.html","corporateBrastel24h"],
		["/corporate/callfwd.html","corporateCallfwd"],
		["/corporate/conference_call.html","corporateConference"],
		["/corporate/faq_corporate.html","corporate_faq"],
		["/corporate/fromjapan.html","corporateFromJapan","corporate"],		
		["/corporate/gsm.html","corporate_gsm"],
		["/corporate/corp_card.html","corporateService"],
		["/corporate/rates.html","corporateRates"],
		["/corporate/index.html","home"],
		["/corporate/itfs.html","corporate_itfs"],
		["/corporate/recharge.html","corporate_recharge"] // Don't put comma (,) after the last one!
	];
	
	var aboutus = [
		["/about/agent.html","agent"],
		["/about/events.html","events"],
		["/about/history.html","history"],
		["/about/index.html","about"],		
		["/about/jobs.html","jobs"],		
		["/about/joint_cards.html","joint"],
		["/about/company_activities.html","company_activities"],
		["/about/location.html","location"],
		["/about/media.html","media"],
		["/about/joint_cards.html","joint"],	
		["/about/videos.html","multimedia"] // Don't put comma (,) after the last one!
	];
	
	var pages = [personal,business,aboutus];
	var categories = ["personal","business","aboutus"];
		
	for ( i=0; i<pages.length; i++ )
	{
		for ( y=0; y<pages[i].length; y++ )
		{
			var pagesRegEx = new RegExp(pages[i][y][0],"i");
			if ( pagesRegEx.test(url) )
			{
				page = pages[i][y][1];
				category = categories[i];
				if (pages[i][y][2]) { pagegrp = pages[i][y][2] }
				return [page,pagegrp,category];
			}
		}
	}
	return [page,pagegrp,category];
};
