jQuery(function() {
	
	// Animate the panels and show the relevant sub-menu
	// Any direct links need to have the class direct_link
	
	$("ul#primary li a[class!='direct_link']").click(function(){
		$("ul#primary").animate({left: "-190px"});
		$("#sliding_navigation div").animate({left: "0px"});
		theUrl='ul'+$(this).attr('href');
		$(theUrl).show().siblings("ul").hide();
		return false;
	});
	
	// Back button animate
	
	$("#sliding_navigation div a.back").click(function(){
		$("ul#primary").animate({left: "0px"});
		$("#sliding_navigation div").animate({left: "190px"});
		return false;
	});
	
	
	
	
});