	var flashvars = {
		xmlurl1 : "/en_GX/gx/managing-tomorrows-people/future-of-work/assets/survey-xml/university-country.xml",
		xmlurl2 : "/en_GX/gx/managing-tomorrows-people/future-of-work/assets/survey-xml/university-region.xml"
	    },
	    params = {
		wmode : "transparent",
		allowscriptaccess : "sameDomain",
		allowfullscreen : "true"
	    },
	    attributes = {id : "Chart"};

	
	function switchSWF(newname){
		$("#mapArea,div.clarification,#mapTitle").fadeOut(300,function(){
			$("#mapArea").html("<div id='dynamicFlash'></div>");	
			
			flashvars.xmlurl1 = "/en_GX/gx/managing-tomorrows-people/future-of-work/assets/survey-xml/"+newname+"-country.xml";
			flashvars.xmlurl2 = "/en_GX/gx/managing-tomorrows-people/future-of-work/assets/survey-xml/"+newname+"-region.xml";
		
			swfobject.embedSWF("/en_GX/gx/managing-tomorrows-people/future-of-work/assets/map.swf", "dynamicFlash", "570", "400", "9.0.0", false, flashvars, params, attributes);
			$("#mapArea,div.clarification,#mapTitle").fadeIn(300);
		});
	}
	
	
	function exploreData(topic,desc){
		$("div.choice").hide().filter("."+topic).show().eq(0).click();
		$("div.choices div.title").html(desc);
		$("#dataExplorer").jqmShow();
	}

	
	$(function(){
		$("div.choice").click(function(){
			switchSWF(this.id);
			$("div.choice").removeClass("selected");
			$(this).addClass("selected");	
		}).hover(
			function(){$(this).addClass("hover");},
			function(){$(this).removeClass("hover");}
		);	
		
		$("img.topic").click(function(){
			exploreData(this.id, this.alt);
			wrs_trackclick('DCS.dcsuri=/gx/en/managing-tomorrows-people/future-of-work/millennials-survey.jhtml_modal_'+this.id, 'WT.ti=Explore the data: '+ this.alt );
		}).hover(
			function(){$(this).addClass("hover");},
			function(){$(this).removeClass("hover");}
		);
	});
	


