jQuery(document).ready(function($) {		var divs = $(".features .feature");	var minHeight = 0;	for(var d = 0; d < divs.length; d++){		if(divs.eq(d).height() > minHeight){			minHeight = divs.eq(d).height();		}	}	divs.css('min-height', minHeight.toString() + 'px');		$(".features .feature").hide();	$(".features .tabs li:first").addClass("active");	$(".features .feature:first").show();	$(".features .tabs li").click(function() {		$(".features .tabs li").removeClass("active");		$(this).addClass("active");		$(".features .feature").hide();		var activeTab = $(this).index();		$(".features div.feature").eq(activeTab).show();		raiseGAEvent('featureTabs', 'clickTab', $(this).text().replace(/ /g,'_').toLowerCase())		return false;	});}); 
