/* Set inital tabs on page load */
var currentTab = "a#tabBestPractices";
var currentPanel = "div#panelBestPractices";

$(document).ready(function(){
	/* TABS */
	/* add click event function to switch tabs */
	$("div#homeTabsNav a").click(function () {
		if ($(currentTab).attr('href') != $(this).attr('href')) {
			$(currentTab).removeClass("tabOn");
			$(currentTab).addClass("tabOff");

			$(this).removeClass("tabOff");
			$(this).addClass("tabOn");
			
			currentTab = $(this);
			
			$(currentPanel).fadeOut("normal");
			$($(this).attr('href')).fadeIn("normal");
			
			currentPanel = $(this).attr('href');
		};
		return false;
	});
});