$(document).ready(
	function()
	{
		$(".ensemble-select").change(
			function()
			{
				
				var path = window.location.pathname;
				var args = path.split("/");
				var l = args.length;
				
				var newLocation = "/page/extranet/" + $(".ensemble-select").val();
				for(i = 0; i < l; i++){
					if (i > 1) {
						newLocation = newLocation + "/" + args[i];
					}
				}

				window.location = newLocation;
			}
		);
	}
);
