function profileSlideDown(div) {
	$('OpenMoreAboutUser', 'OpenShowSavedUsers', 'OpenShowBookmarks').invoke('hide');
	$("CloseProfile").show();
	$(div).show();
	Effect.SlideDown("profile", {duration:0.5});
}
function profileSlideUp() {
	$('OpenMoreAboutUser', 'OpenShowSavedUsers', 'OpenShowBookmarks').invoke('show');
	$("CloseProfile").hide();
	Effect.SlideUp("profile", 
 		{duration: 0.5, afterFinish: function(){clearProfile()}});
}
function clearProfile() {
	$('MoreAboutUser', 'ShowSavedUsers', 'ShowBookmarks').invoke('hide');
}