$(document).ready(function() {
	$(".tab:not(.active)").live("click",function() {
		$(this).siblings().removeClass("active");
		$(this).addClass("active");
		
		// hide all content
		$(".highlight").hide();
		// show associated content
		if ($(this).is(".features")) {
			$(".highlight.features").show();
		} else if ($(this).is(".benefits")) {
			$(".highlight.benefits").show();
		}
	});
});