// JavaScript Document
$(function(){
	$('#sideBar').load(mainnavUrl, function(){
        
		$('#mainNav').menu_f(true);
    });
$("ul[@class='list_l']").each(function(){
	$(this).hide();
	$(this).parent().children('a').click(function(){
		$("ul[@class='list_l']").hide();
		$(this).parent().children('ul').slideDown("slow");		
	});	
	});

$(".show2").hide();
$(".show3").hide();
$("#showtext1").click(function(){
	$(".tt_p").fadeIn();
	$(".show1").fadeIn("slow"); 
	$(".show2").hide();
	$(".show3").hide();
})
$("#showtext2").click(function(){
	$(".tt_p").hide();
	$(".show2").fadeIn("slow"); 
	$(".show1").hide();
	$(".show3").hide();
})
$("#showtext3").click(function(){
	$(".show3").fadeIn("slow"); 
	$(".show1").hide();
	$(".show2").hide();
})

});

