$(document).ready(function() {

page = $("body").attr("class");
if (page.indexOf("tfc") != -1) {$("ul.tfc").show(); $("b#tfc").addClass("fixed");}
if (page.indexOf("parents") != -1) {$("ul.parents").show(); $("b#parents").addClass("fixed");}
if (page.indexOf("practs") != -1) {$("ul.practs").show(); $("b#practs").addClass("fixed");}
if (page.indexOf("profs") != -1) {$("ul.profs").show(); $("b#profs").addClass("fixed");}
if (page.indexOf("tests") != -1) {$("ul.tests").show(); $("b#tests").addClass("fixed");}
if (page.indexOf("faq") != -1) {$("ul.faq").show(); $("b#faq").addClass("fixed");}

$("b.sub").click(function(){
	if(this.className.indexOf("fixed") != -1) {
		$("b.current").next().slideUp(400);
		$("b.current").removeClass("current");
	}

	if(this.className.indexOf("fixed") == -1) {
	if(this.className.indexOf("current") == -1) {
		$("b.current").css("backgroundImage","url(http://askillfullife.com/thefieldcenter/test/images/arrowa.gif)");
		$("b.current").css("backgroundRepeat","no-repeat");
		$("b.current").css("backgroundPosition","27px center");
		id = $(this).attr("id");
		$('b.sub').each(function() {
			id = $(this).attr("id");
			if (page.indexOf(id) == -1) {
			$(this).next().slideUp(400);
			}
		});
		$("b.sub").removeClass("current");
		$(this).next().slideDown(400);
		$(this).addClass("current");
	}
	else {
		$(this).removeClass("current");
		$(this).next().slideUp(400);
	}
	}
});

$("b.sub").mouseover(function(){
	$(this).css("backgroundImage","url(http://askillfullife.com/thefieldcenter/test/images/arrowb.gif)");
	$(this).css("backgroundRepeat","no-repeat");
	$(this).css("backgroundPosition","27px center");
});
$("b.sub").mouseout(function(){
	if(this.className.indexOf("current") == -1 && this.className.indexOf("fixed") == -1 ) {
	$(this).css("backgroundImage","url(http://askillfullife.com/thefieldcenter/test/images/arrowa.gif)");
	$(this).css("backgroundRepeat","no-repeat");
	$(this).css("backgroundPosition","27px center");
	}
});


});

