$(document).ready(function(){
	$("ul.selectFeature").children("li.technos").click(function(){
				$("ul.selectFeature li").removeClass("current");
				$(this).addClass("current");
				$("#technosFeature div.technos").show();
				$("#technosFeature div.global").hide();
				$("#technosFeature div.comprehensive").hide();
				$("#technosFeature div.social").hide();
				$("#technosFeature div.effective").hide();
			});

	$("ul.selectFeature").children("li.global").click(function(){
				$("ul.selectFeature li").removeClass("current");
				$(this).addClass("current");
				$("#technosFeature div.technos").hide();
				$("#technosFeature div.global").show();
				$("#technosFeature div.comprehensive").hide();
				$("#technosFeature div.social").hide();
				$("#technosFeature div.effective").hide();
			});

	$("ul.selectFeature").children("li.comprehensive").click(function(){
				$("ul.selectFeature li").removeClass("current");
				$(this).addClass("current");
				$("#technosFeature div.technos").hide();
				$("#technosFeature div.global").hide();
				$("#technosFeature div.comprehensive").show();
				$("#technosFeature div.social").hide();
				$("#technosFeature div.effective").hide();
			});

	$("ul.selectFeature").children("li.social").click(function(){
				$("ul.selectFeature li").removeClass("current");
				$(this).addClass("current");
				$("#technosFeature div.technos").hide();
				$("#technosFeature div.global").hide();
				$("#technosFeature div.comprehensive").hide();
				$("#technosFeature div.social").show();
				$("#technosFeature div.effective").hide();
			});

	$("ul.selectFeature").children("li.effective").click(function(){
				$("ul.selectFeature li").removeClass("current");
				$(this).addClass("current");
				$("#technosFeature div.technos").hide();
				$("#technosFeature div.global").hide();
				$("#technosFeature div.comprehensive").hide();
				$("#technosFeature div.social").hide();
				$("#technosFeature div.effective").show();
			});

});
