function doSlidePanel(){
	jQuery("#body").hide();
		setTimeout(function() { 
		jQuery("#colright").animate( { width:"179px"}, 1000, function(){jQuery("#body").fadeIn("slow").show();});	  		
	  }, 2000);
}

function restSlideToggle(){
	jQuery("#restcontent").height((jQuery("#body").height())-12);
	jQuery("#restcontent").slideToggle("slow").show().fadeTo("fast", 0.60);
}
function restSlideToggle2(){
	jQuery("#restcontent").height((jQuery("#body2").height())-12);
	jQuery("#restcontent").slideToggle("slow").show().fadeTo("fast", 0.60);
}

function restSlideUp(){
	setTimeout(function() { 
		jQuery("#restcontent").slideUp("slow").fadeTo("fast", 100);
    }, 500);	
}



jQuery().ready(function(){	
	// applying the settings
	jQuery('#menu').Accordion({
		active: '.selected',
//active: false;		
header: 'h3.head',
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800,
//autoHeight: false,
navigation: true

	});
	});
