$(document).ready(function() {
	//When page loads...
	$(".VisibilityToggle").css('display', 'none');
	$(".subtab_content").hide(); //Hide all content
	$("#subtab1").show(); //Show first tab content

	//On Click Event
	$(".subtab1").click(function() {
		$(".VisibilityToggle").css('display', 'none');
		$(".subtab_content").hide(); //Hide all tab content
		$("#subtab1").show(); //Show in the active ID content
		_gaq.push(['_trackEvent', 'Navbar', 'Tab', 'Home']);
                _gaq.push(['_trackPageview', 'Home']);
		return false;
	});
	$(".subtab2").click(function() {
		$(".VisibilityToggle").css('display', 'none');
		$(".subtab_content").hide(); //Hide all tab content
		$("#subtab2").show(); //Show in the active ID content
		_gaq.push(['_trackEvent', 'Navbar', 'Tab', 'Benefits']);
                _gaq.push(['_trackPageview', 'Benefits']);
		return false;
	});
	$(".subtab3").click(function() {
		$(".VisibilityToggle").css('display', 'block');
		$(".subtab_content").hide(); //Hide all tab content
		$("#subtab3").show(); //Show in the active ID content
		_gaq.push(['_trackEvent', 'SubNav', 'Button', 'Easy']);
                _gaq.push(['_trackPageview', 'Easy']);
		return false;
	});
	$(".subtab4").click(function() {
		$(".VisibilityToggle").css('display', 'none');
		$(".subtab_content").hide(); //Hide all tab content
		$("#subtab4").show(); //Show in the active ID content
		_gaq.push(['_trackEvent', 'SubNav', 'Button', 'Small']);
                _gaq.push(['_trackPageview', 'Small']);
		return false;
	});
	$(".subtab5").click(function() {
		$(".VisibilityToggle").css('display', 'none');
		$(".subtab_content").hide(); //Hide all tab content
		$("#subtab5").show(); //Show in the active ID content
		_gaq.push(['_trackEvent', 'SubNav', 'Button', 'Accurate']);
                _gaq.push(['_trackPageview', 'Accurate']);
		return false;
	});
});
