123456789101112131415161718192021222324252627282930313233343536373839 |
- $(document).ready(function()
- {
-
- $(".J_hoverbut").hover(
- function()
- {
- $(this).addClass("hover");
- },
- function()
- {
- $(this).removeClass("hover");
- }
- );
-
- $(".noticestab .tli").click( function () {
- $(this).addClass("select").siblings(".tli").removeClass("select");
- var index = $(".noticestab .tli").index(this);
- $('.notice_showtabs').eq(index).show().siblings(".notice_showtabs").hide();
- });
-
- $(".newstab .newstli").click( function () {
- $(this).addClass("select").siblings(".newstli").removeClass("select");
- var index = $(".newstab .newstli").index(this);
- $('.news_showtabs').eq(index).show().siblings(".news_showtabs").hide();
- });
- $(".J_focus input[type='text'][dir!='no_focus'],.J_focus textarea[dir!='no_focus'],.J_focus input[type='password']").focus(function(){
- $(this).addClass("input_focus")
- });
- $(".J_focus input[type='text'][dir!='no_focus'],.J_focus textarea[dir!='no_focus'],.J_focus input[type='password']").blur(function(){
- $(this).removeClass("input_focus")
- });
- });
|