
jQuery.fn.delay=function(time,callback){jQuery.fx.step.delay=function(){};return this.animate({delay:1},time,callback);}
$(document).ready(function(){function inbox_selector(t){$("input.inbox").each(function(){if(t=="all"){$(this).attr("checked","checked");}
else if(t=="none"){$(this).removeAttr("checked");}
else{if($(this).hasClass(t)){$(this).attr("checked","checked");}
else{$(this).removeAttr("checked");}}});};$("#inbox_select a").each(function(){$(this).click(function(){t=$(this).attr("name");inbox_selector(t);});});$(".k2si").each(function(){$(this).click(function(){var goTo=$(this).find("a").attr("href");document.location=goTo;});});$("#hide_notice").click(function(){$("#msg_notice").hide();});});