$(document).ready(function() {
	$('#sidebar_tab > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	$(".toggle_container").hide();

	$("h2.expand_heading").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h2.expand_heading").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
	});
	$(".expand_all").toggle(function(){
		$(".expand_top").addClass("expanded"); 
		}, function () {
		$(".expand_top").removeClass("expanded");
	});
	$(".expand_all").click(function(){
		$(".toggle_container").slideToggle("slow,");

	});
	$('img.menu_class').click(function () {
	$('.the_menu').slideToggle('medium');
    });


});
