﻿$(function() {

	// Hide all but the first content area.
	var thisTab = $(".jvTabContent:first");
	thisTab = thisTab.next();
	while (thisTab.length > 0) {
		thisTab.css("display", "none");
		thisTab = thisTab.next();
	}

	// Format First Tab
	$(".jvTabButton:first").addClass("jvTabButtonActive");

	// Add Click Event
	$(".jvTabButton").click(function(e) {

		// Hide All Content DIVs.
		$(".jvTabContent").css("display", "none");

		// Show DIV named in HREF attribute.  (# character is necessary!)
		$($(this).attr("href")).css("display", "block");

		// Format Buttons
		$(".jvTabButton").removeClass("jvTabButtonActive");
		$(this).addClass("jvTabButtonActive");

		// Stop Default Action (useful if using link buttons)
		e.preventDefault();

	})

})

