diff --git a/YACOSWeb/WebContent/WEB-INF/jsp/userBoard.jsp b/YACOSWeb/WebContent/WEB-INF/jsp/userBoard.jsp index f61779b..ccaaeb3 100644 --- a/YACOSWeb/WebContent/WEB-INF/jsp/userBoard.jsp +++ b/YACOSWeb/WebContent/WEB-INF/jsp/userBoard.jsp @@ -11,44 +11,58 @@ function showConfAll() { if ($('confList').visible()) - $('confList').style.display = "none"; + $('confList').fade(); else - $('confList').style.display = ""; + $('confList').appear(); } function showArticleAll() { if ($('articleList').visible()) - $('articleList').style.display = "none"; + $('articleList').fade(); else - $('articleList').style.display = ""; + $('articleList').appear(); } function showConfChairman() { if ($('confListChairman').visible()) - $('confListChairman').style.display = "none"; + $('confListChairman').fade(); else - $('confListChairman').style.display = ""; + $('confListChairman').appear(); } function showConfPcmember() { if ($('confListPcmember').visible()) - $('confListPcmember').style.display = "none"; + $('confListPcmember').fade(); else - $('confListPcmember').style.display = ""; + $('confListPcmember').appear(); } function showConfReferee() { if ($('confListReferee').visible()) - $('confListReferee').style.display = "none"; + $('confListReferee').fade(); else - $('confListReferee').style.display = ""; + $('confListReferee').appear(); } function showConfAuthor() { if ($('confListAuthor').visible()) - $('confListAuthor').style.display = "none"; + $('confListAuthor').fade(); else - $('confListAuthor').style.display = ""; + $('confListAuthor').appear(); +} + +function showArticlePcMember() { + if ($('articleListPcMember').visible()) + $('articleListPcMember').fade(); + else + $('articleListPcMember').appear(); +} + +function showArticleReferee() { + if ($('articleListReferee').visible()) + $('articleListReferee').fade(); + else + $('articleListReferee').appear(); } @@ -59,14 +73,15 @@ function showConfAuthor() {