

$(function(){
	$(".banner img").click(
			function(){
				if($(this).attr("class") != 'first')
					window.location = "/gx/en/managing-tomorrows-people/future-of-work/" + $(this).attr("class") + "-world.jhtml" ;
			});
			
			$("img.interactive").click(function(){
				var i = $(this).prevAll("img.interactive").length,
				    j = $("div.interactive:visible").hide().prevAll("div.interactive").length;
				
				$("img.interactive").eq(j).show();
				$(this).hide();
				$("div.interactive").eq(i).show();
					
			});
});


