function getPageTracker() {
	
	var activePages = $$('#mainNav li a.level2.act');
	var created_location = "";

	activePages.each(function(activePage){
			
		String.prototype.splitOnSpaces = String.prototype.split.curry(' '); 	 
		activePageArray =  activePage.innerHTML.splitOnSpaces();	
		
		var count = 0;
		
		activePageArray.each(function(n){
				count++;
				
				if(count == 1) {
					created_location = n;
				}
				
		});
	});
	
	if(created_location =='Zürich'){
		created_location = 'Zurich';
	}else if(created_location =='Winterthour'){
		created_location = 'Winterthur';
	}
	
	pageTracker._trackPageview(created_location+'/serviceorder/service');
}

