// This hides the left hand menu
			$(document).ready(function() {
				// Collapse everything but the first menu:
				$("#navigation > li > a").not(":first").not("#procurement_resources_open").find("+ ul").slideUp(1);
				
				// Expand or collapse:
				$("#navigation > li > a").click(function() {
					$(this).find("+ ul").slideToggle("slow");
				});


// Show the additional account and profile


// the accreddit process
		$(".link1").addClass("hide");
		$(".select_link1").click(function(){
			$("div.link1").slideToggle("slow").removeClass("hide"); });	
		
// information required
		$(".link2").addClass("hide");
		$(".select_link2").click(function(){
			$("div.link2").slideToggle("slow").removeClass("hide"); });	




//Accordion
	$(".accordion2 div.accord").hide();
	$("h3.accordionh3").click(function(){
		$(this).next(".accordion2 div.accord").slideToggle("slow");
		$(this).toggleClass("active");
	});
$("h3.accordionh4").click(function(){
		$(this).next(".accordion2 div.accord").slideToggle("slow");
		$(this).toggleClass("active2");
	});

});