
/* legalRegions.js
 * File used to hold information about regions for the pwc.com Legal site.
 *  
 * The "regions" object holds the contact information for each leader of each 
 * legal region.  
 */


var regions = {
		
		"Americas" :[ 
			{
				"name" : "Durval Portela",
				"title" : "Americas legal leader",
				"firmname" : "Loeser e Portela Advogados (Brazil)",
				"email" : "Durval Portela/BR/LPA@LP-ADV",
				"phone" : "+55 11 3879 2800"
			},
			{
				"name" : "Carlos Manuel Martínez",
				"title" : "Americas legal leader",
				"firmname" : "PricewaterhouseCoopers (Mexico)",
				"email" : "Gabriel Aguilar/MX/TLS/PwC@Americas-MX",
				"phone" : "++52 (0) 81 81 52 20 43"
			}
		],
		"CEE" : [
			{
				"name" : "Alistair Hogarth",
				"title" : "CEE legal leader",
				"firmname" : "PricewaterhouseCoopers Legal LLP (UK)",
				"email" : "Alistair Hogarth/PwC Legal/UK/TLS/PwC@EMEA-UK",
				"phone" : "+44 (0) 20 7212 1921"
			} 
		],
		"Europe" : [
			{
				"name" : "Leon Flavell",
				"title" : "",
				"firmname" : "PricewaterhouseCoopers Legal LLP",
				"email" : "Leon Flavell/PwC Legal/UK/TLS/PwC@EMEA-UK",
				"phone" : "+44 (0) 20 7212 1945"
			} 
		],
		"Africa" : [
			{
				"name" : "Leon Flavell",
				"title" : "",
				"firmname" : "PricewaterhouseCoopers Legal LLP",
				"email" : "Leon Flavell/PwC Legal/UK/TLS/PwC@EMEA-UK",
				"phone" : "+44 (0) 20 7212 1945"
			} 
		],
		"Middle East" : [
			{
				"name" : "Waseem Khokhar",
				"title" : "Middle East legal leader",
				"firmname" : "PricewaterhouseCoopers Legal Middle East LLP (UAE)",
				"email" : "Waseem Khokhar/PwC Legal/AE/TLS/PwC@EMEA-ME",
				"phone" : "+44 (0) 20 7212 1945"
			}            
		],
		"Asia Pacific" : [
			{
				"name" : "Andrew Wheeler",
				"title" : "Asia Pacific legal leader",
				"firmname" : "PricewaterhouseCoopers (Australia)",
				"email" : "Andrew Wheeler/AU/TLS/PwC@AsiaPac",
				"phone" : "+61 2 8266 6401"
			}   
		]
}; 

