function doSlidePanel(){
	$("#body").hide();
		setTimeout(function() { 
		$("#colright").animate( { width:"179px"}, 1000, function(){$("#body").fadeIn("slow").show();});	  		
	  }, 2000);
}

function restSlideToggle(){
	$("#restcontent").height(($("#body").height())-12);
	$("#restcontent").slideToggle("slow").show().fadeTo("fast", 0.60);
}
function restSlideToggle2(){
	$("#restcontent").height(($("#body2").height())-12);
	$("#restcontent").slideToggle("slow").show().fadeTo("fast", 0.60);
}

function restSlideUp(){
	setTimeout(function() { 
		$("#restcontent").slideUp("slow").fadeTo("fast", 100);
    }, 500);	
}


jQuery().ready(function(){	
	// applying the settings
	jQuery('#menu').Accordion({
		active: '.selected',
		header: 'h3.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
});