$(document).ready(function() {
	//When page loads...
	$(".tab_content").hide(); //Hide all content
	$("#tab1").show(); //Show first tab content

	//On Click Event
	$(".tab1").click(function() {
		$(".tab_content").hide(); //Hide all tab content
		$("#tab1").show(); //Show in the active ID content
		return false;
	});
	$(".tab2").click(function() {
		$(".tab_content").hide(); //Hide all tab content
		$("#tab2").show(); //Show in the active ID content
		_gaq.push(['_trackEvent', 'Navbar', 'Tab', 'Testimonials']);
                _gaq.push(['_trackPageview', 'Testimonials']);
		return false;
	});
	$(".tab3").click(function() {
		$(".tab_content").hide(); //Hide all tab content
		$("#tab3").show(); //Show in the active ID content
		_gaq.push(['_trackEvent', 'Navbar', 'Tab', 'Specs']);
                _gaq.push(['_trackPageview', 'Specs']);
		return false;
	});
});
