function showSlidingDiv(toshow, tohide1, tohide2){
	$("#"+toshow).animate({"height": "toggle"}, { duration: 1000 });
	$("#"+tohide1).hide('slow');
	$("#"+tohide2).hide('slow');
}
function showServices(toshow, hidePerm, tohide1, tohide2, tohide3, tohide4, tohide5, tohide6, tohide7, tohide8, tohide9){
	$("#"+toshow).animate({"height": "toggle"}, { duration: 1000 });
	$("#"+hidePerm).hide('slow');
	$("#"+tohide1).hide('slow');
	$("#"+tohide2).hide('slow');
	$("#"+tohide3).hide('slow');
	$("#"+tohide4).hide('slow');
	$("#"+tohide5).hide('slow');
	$("#"+tohide6).hide('slow');
	$("#"+tohide7).hide('slow');
	$("#"+tohide8).hide('slow');
	$("#"+tohide9).hide('slow');
}
function showPortfolio(toshow, tohide1) {
	$("#"+toshow).animate({"height": "toggle"}, { duration: 1000});
	$("#"+tohide1).hide('slow');	
}