(function() {
	var cidmatch = window.location.href.match(/cid=([^&]*)(&?)(.*)$/)
	var cid = cidmatch ? "?cid="+cidmatch [1] : "";
	
	var mappings = {
		"instEU":"/gsam/europe/institutions/index.html",
		"advEU":"/gsam/europe/advisors/index.html",
		"indEU":"/gsam/europe/individuals/index.html",
		"advDE":"/gsam/de/advisors/index.html",
		"advIT":"/gsam/it/advisors/index.html",
		"indIT":"/gsam/it/individuals/index.html",
		"instUS":"/gsam/institutions/index.html" + cid,
		"advUS":"/gsam/advisors/index.html" + cid,
		"indUS":"/gsam/individuals/index.html" + cid,
		"glmUS":"/gsam/glm/index.html" + cid,
		"instIN":"/gsam/india/individuals/index.html",
		"advIN":"/gsam/india/advisors/index.html",
		"indIN":"/gsam/india/individuals/index.html",
		"advFR":"/gsam/fr/advisors/index.html",
		"advNL":"/gsam/nl/advisors/index.html",
		"advES":"/gsam/es/advisors/index.html",
		"advUK":"/gsam/uk/advisors/index.html",
		"advCHDE":"/gsam/ch/advisors/de/index.html",
		"advCHEN":"/gsam/ch/advisors/en/index.html",
		"advCHFR":"/gsam/ch/advisors/fr/index.html",
		"advCHIT":"/gsam/ch/advisors/it/index.html",
		"select" : function() { window.addEvent('load', function() { new GoldmanSachs.WebsiteSelectorOverlay('/gsam/worldwide/select-website.html?interrupt=text&name=/gsam/worldwide/select-website') } ); },
		"advCH" : function() { window.addEvent('load', function() { new GoldmanSachs.PageOverlay("/gsam/ch/advisors/language-selector/index.html") } ); }
	}

	var redirect = function(m) {
		if (m == "advUS" || m == "indUS") 
			Cookie.set('audience', m, {path:'/'});
		
		var target = mappings[m];
		
		if (target) {
			if (typeof target == 'string') window.location = target;
			else if (typeof target == 'function') target();
		}
	}
	
	var match = window.location.href.match(/aud=([^&]*)(&?)(.*)$/)
	var param = match ? match[1] : null;
	
	if (param != null) {
		redirect(param);
	} else {
		var cookie = Cookie.get('audience');
		if (cookie)
			redirect(cookie);
	}
	
	window.redirect = redirect;
})()

